├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── Convert-json-to-csv.ps1 ├── LICENSE ├── README.md ├── Resources ├── KJV challenge │ ├── FINAL FINAL │ │ ├── ALL JSON IMPORTS │ │ │ ├── CSV_import_Import1-books-with_testament.csv_20200517_001454.json │ │ │ ├── CSV_import_Import2-books-chapters-with_book_attr.csv_20200517_001839.json │ │ │ ├── CSV_import_Import3-verses1.csv_20200517_001053.json │ │ │ ├── CSV_import_Import3-verses2.csv_20200517_001410.json │ │ │ └── CSV_import_Import3-verses3.csv_20200517_002245.json │ │ ├── import1 │ │ │ ├── Import1-books-with_testament.csv │ │ │ └── Results │ │ │ │ ├── CSV_import_Import1-books-with_testament.csv_20200517_001454.json │ │ │ │ └── CSV_import_Import1-books-with_testament.csv_20200517_001454.md │ │ ├── import2 │ │ │ ├── Import2-books-chapters-with_book_attr.csv │ │ │ └── Results │ │ │ │ ├── CSV_import_Import2-books-chapters-with_book_attr.csv_20200517_001839.json │ │ │ │ └── CSV_import_Import2-books-chapters-with_book_attr.csv_20200517_001839.md │ │ └── import3 │ │ │ ├── CSV_import_Import3-verses1.csv_20200517_001053.json │ │ │ ├── CSV_import_Import3-verses2.csv_20200517_001410.json │ │ │ ├── CSV_import_Import3-verses3.csv_20200517_002245.json │ │ │ ├── Import3-verses1.csv │ │ │ ├── Import3-verses2.csv │ │ │ ├── Import3-verses3.csv │ │ │ ├── Results 2 │ │ │ ├── CSV_import_Import3-verses2.csv_20200517_001410.json │ │ │ └── CSV_import_Import3-verses2.csv_20200517_001410.md │ │ │ ├── Results 3 │ │ │ ├── CSV_import_Import3-verses3.csv_20200517_002245.json │ │ │ └── CSV_import_Import3-verses3.csv_20200517_002245.md │ │ │ └── Results │ │ │ ├── CSV_import_Import3-verses1.csv_20200517_001053.json │ │ │ └── CSV_import_Import3-verses1.csv_20200517_001053.md │ ├── KJV challenge (full orig messy).zip │ ├── KJV spm analysis.xlsx │ ├── Roam_KJV_Full_Export.json │ ├── Roam_KJV_Full_Export_After_BlockRefVerses.json │ ├── Roam_KJV_Full_Export_Excel.xlsx │ └── TOC_w_BlockRefs │ │ ├── CSV_import_Chapter_TOC_BlockRefs_NewTestament.csv_20200518_163906.json │ │ ├── CSV_import_Chapter_TOC_BlockRefs_OldTestament.csv_20200518_163552.json │ │ ├── Chapter_TOC_BlockRefs_NewTestament.csv │ │ └── Chapter_TOC_BlockRefs_OldTestament.csv ├── README.orig.md ├── locations.csv ├── people.csv └── people_blocks.csv ├── Roam testing TEMP - Shortcut.lnk └── Roam-csv-importer.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: 'bug' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: 'enhancement' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /Convert-json-to-csv.ps1: -------------------------------------------------------------------------------- 1 | #Get path where script is running from so you can target JSON 2 | $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition 3 | 4 | #Try to find the JSON file to convert automatically by looking in current folder and also sorting by most recent edited 5 | $foundJson = Get-ChildItem -Path $scriptPath -Filter *.json | Sort-Object -Property LastWriteTime -Descending | Select-Object -first 1 6 | $foundName = $foundJson.Name 7 | 8 | if(!$foundJson) 9 | { 10 | #Exit the script 11 | Read-Host -Prompt "Press any key to exit. No JSON files found in the folder you are running the script from. Copy to the same folder and restart the script." 12 | Exit 13 | } 14 | 15 | #The JSON that was auto picked is the correct one (JSON in same folder as script) 16 | #Get the file name and create the full path 17 | $fileNameStr = $foundName 18 | $fileNameStrPath = $foundJson.FullName 19 | 20 | #Import JSON file into a Variable to loop through and parse 21 | $jsonObj = ConvertFrom-JSON (Get-Content $fileNameStrPath -Raw) 22 | 23 | #Set the Results folder to store all the outputs from the script 24 | $resultsFolder = "$scriptPath\Results" 25 | 26 | #Get a date string down to the second we can add to the JSON result file we will be creating so no duplicates if we run multiple times 27 | $fullDateStr = get-date 28 | $dateStrName = $fullDateStr.ToString("yyyyMMdd_HHmmss") 29 | $csvResultFileName = "Roam_Json_to_CSV_" + $fileNameStr + "_" + $dateStrName 30 | $jsonResultCsv = "$resultsFolder\" + "$csvResultFileName" + ".csv" 31 | 32 | #Create Results folder if it doesn't already exist 33 | if(!(Test-Path $resultsFolder)){New-Item -ItemType Directory -Force -Path $resultsFolder | Out-Null} 34 | 35 | #$true on end for append instead of overwrite 36 | $csvResultStream = New-Object System.IO.StreamWriter -ArgumentList "$jsonResultCsv",$true 37 | 38 | #Clean stuff out like '"' quotes that have to be escaped with 2 of them 39 | function Clean-String($InputString) 40 | { 41 | if($InputString -eq ""){return $InputString} 42 | 43 | #Replace special characters like line breaks and tabs 44 | $InputString = $InputString -Replace '"','""' -Replace "`t","\t" -Replace "`r","\r" -Replace "`n","\n" 45 | return $InputString 46 | } 47 | 48 | Function Write-To-Result 49 | { 50 | Param( 51 | [string]$resultLine 52 | ) 53 | 54 | $csvResultStream.WriteLine($resultLine) 55 | } 56 | 57 | Function Loop-Block 58 | { 59 | Param( 60 | [object]$pgBlock, 61 | [string]$hierStr, 62 | [string]$pgName, 63 | [int]$blDepth 64 | ) 65 | 66 | foreach($childBlock in $pgBlock.children) 67 | { 68 | $newBlDepth = $blDepth + 1 69 | $blockStr = $childBlock.string 70 | $blockUID = $childBlock.uid 71 | $strResult = "$blockUID : $blockStr" 72 | $newHierStr = $hierStr + ' > ' + $strResult 73 | $csvString = '"' + (Clean-String $pgName) + '","' + (Clean-String $blockUID) + '","' + $newBlDepth + '","' + (Clean-String $blockStr) + '","' + (Clean-String $newHierStr) + '"' 74 | Write-To-Result $csvString 75 | Loop-Block $childBlock $newHierStr $pgName $newBlDepth 76 | } 77 | } 78 | 79 | #Creater header row for columns 80 | $csvString = '"' + "PageName" + '","' + "BlockUID" + '","' + "BlockDepth" + '","' + "BlockString" + '","' + "Hierarchy" + '"' 81 | Write-To-Result $csvString 82 | 83 | $pageCtr = 1 84 | #Loop through every Roam Page Name 85 | foreach($pageObj in $jsonObj) 86 | { 87 | $pageName = $pageObj.title 88 | write-host $pageCtr 89 | #Loop through every block on each page 90 | foreach($pageBlock in $pageObj.children) 91 | { 92 | $blockDepth = 0 93 | $blockStr = $pageBlock.string 94 | $blockUID = $pageBlock.uid 95 | $strResult = "$blockUID : $blockStr" 96 | $hierarchyStr = $pageName + ' > ' + $strResult 97 | $csvString = '"' + (Clean-String $pageName) + '","' + (Clean-String $blockUID) + '","' + $blockDepth + '","' + (Clean-String $blockStr) + '","' + (Clean-String $hierarchyStr) + '"' 98 | Write-To-Result $csvString 99 | Loop-Block $pageBlock $hierarchyStr $pageName $blockDepth 100 | } 101 | $pageCtr++ 102 | } 103 | 104 | $csvResultStream.Close() 105 | 106 | #Exit the script 107 | Read-Host -Prompt "Conversion complete. Press any key to exit." 108 | Exit 109 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 GitMurf 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IMPORTANT as of May 17, 2020 the Instructions and information below do NOT reflect the updated capabilities of this tool with regards to the JSON conversion which was used to Import the KJV Bible into Roam. 2 | 3 | The Roam-csv-importer.ps1 script file is all you need. The script itself has some prompts that make it pretty self explanatory and if you select the wrong option it will tell/warn you. So until I update this Readme feel free to play around with it. Also checkout the Resources folder for some examples and all the source data / results used in the KJV import. 4 | 5 | # Converting CSV files to Markdown for Roam Tables 6 | 7 | Very early stages. Script is working great but non-windows folks have to figure out how to run PowerShell on their computer. 8 | 9 | *Rob Haisfield is on a MAC and said he found a source for running PowerShell. Will wait and see when he tests it, but hopefully he can explain how it can be done.* 10 | 11 | --- 12 | 13 | ## Quick GIF Demo 14 | 15 | ![](https://user-images.githubusercontent.com/64155612/80481042-90c72200-8906-11ea-96cd-0f5c7dd7a2ba.gif) 16 | 17 | ## New Demo with CRM type import working 18 | 19 | https://www.screencast.com/t/xEq45WGWkl 20 | 21 | ## Brief Video Demo 22 | 23 | https://www.screencast.com/t/ak2DEaml2HYK 24 | 25 | --- 26 | 27 | ## How to Download the Script 28 | 29 | I know everyone is used to GitHub, but the nice thing about Bitbucket is you do NOT have to signup for an account to access a Public repository like mine. 30 | 31 | 1. Go to [Downloads tab](https://bitbucket.org/murf/csv-to-roam-table-md/downloads/) 32 | 2. Click **Download repository** 33 | 3. Save the .zip package on your computer. 34 | 4. Unzip the package. 35 | 36 | --- 37 | 38 | ## How to Run the Script 39 | 40 | This is a brand new script and I haven't spent much time on it but wanted to get it out. The ReadMe is lacking as well but I plan to spend some time later this week. Watch the Demo Video linked above which shows the script in action. 41 | 42 | 1. Move the CSV-to-Roam-table-md.ps1 PowerShell script into the same folder as whatever .CSV file you are trying to convert. 43 | 2. Right-click the script and select **Run with PowerShell**. 44 | 3. Press ENTER if you are converting a file with the Default "," (comma) separated values. 45 | * If you want to use another delimiter like ; or | or TAB then press 'n' and ENTER 46 | * Enter the delimiter you want to use. NOTE: If your file is Tab delimited then enter 'TAB'. 47 | 4. Press ENTER again at the next prompt if you want to use the Default path which is set to whatever folder you are running the script from. 48 | * If you want to use another folder path then press 'n' and ENTER 49 | * Enter the folder path where your .CSV file is that you want to convert. 50 | 5. Enter the name of the file... do **NOT** include the path (For Example: locations.csv) 51 | 6. Open the resulting .md file and simply copy the entire file contents and then paste into any block in Roam and it should auto format/create the table. 52 | 53 | A lot more to come! 54 | 55 | # License 56 | 57 | [![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](http://badges.mit-license.org) 58 | 59 | This project is licensed under the **MIT license** - see the [LICENSE](LICENSE) file for details 60 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/ALL JSON IMPORTS/CSV_import_Import1-books-with_testament.csv_20200517_001454.json: -------------------------------------------------------------------------------- 1 | [{"title":"Genesis","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Exodus","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Leviticus","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Numbers","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Deuteronomy","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Joshua","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Judges","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ruth","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"1 Samuel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"2 Samuel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"1 Kings","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"2 Kings","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"1 Chronicles","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"2 Chronicles","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ezra","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Nehemiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Esther","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Job","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Psalm","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Proverbs","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ecclesiastes","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Song of Solomon","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Isaiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Jeremiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Lamentations","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ezekiel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Daniel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Hosea","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Joel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Amos","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Obadiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Jonah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Micah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Nahum","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Habakkuk","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Zephaniah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Haggai","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Zechariah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Malachi","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Matthew","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Mark","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Luke","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Acts","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Romans","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Corinthians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Corinthians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Galatians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Ephesians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Philippians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Colossians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Thessalonians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Thessalonians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Timothy","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Timothy","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Titus","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Philemon","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Hebrews","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"James","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Peter","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Peter","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"3 John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Jude","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Revelation","children":[{"string":"Testament:: [[New Testament]]"}]}] 2 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/ALL JSON IMPORTS/CSV_import_Import2-books-chapters-with_book_attr.csv_20200517_001839.json: -------------------------------------------------------------------------------- 1 | [{"title":"Genesis 1","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 2","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 3","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 4","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 5","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 6","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 7","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 8","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 9","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 10","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 11","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 12","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 13","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 14","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 15","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 16","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 17","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 18","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 19","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 20","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 21","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 22","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 23","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 24","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 25","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 26","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 27","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 28","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 29","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 30","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 31","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 32","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 33","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 34","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 35","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 36","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 37","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 38","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 39","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 40","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 41","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 42","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 43","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 44","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 45","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 46","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 47","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 48","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 49","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Genesis 50","children":[{"string":"Book:: [[Genesis]]"}]},{"title":"Exodus 1","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 2","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 3","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 4","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 5","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 6","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 7","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 8","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 9","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 10","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 11","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 12","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 13","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 14","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 15","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 16","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 17","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 18","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 19","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 20","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 21","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 22","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 23","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 24","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 25","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 26","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 27","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 28","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 29","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 30","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 31","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 32","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 33","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 34","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 35","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 36","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 37","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 38","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 39","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Exodus 40","children":[{"string":"Book:: [[Exodus]]"}]},{"title":"Leviticus 1","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 2","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 3","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 4","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 5","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 6","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 7","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 8","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 9","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 10","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 11","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 12","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 13","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 14","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 15","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 16","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 17","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 18","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 19","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 20","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 21","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 22","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 23","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 24","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 25","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 26","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Leviticus 27","children":[{"string":"Book:: [[Leviticus]]"}]},{"title":"Numbers 1","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 2","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 3","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 4","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 5","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 6","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 7","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 8","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 9","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 10","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 11","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 12","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 13","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 14","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 15","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 16","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 17","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 18","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 19","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 20","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 21","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 22","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 23","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 24","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 25","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 26","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 27","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 28","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 29","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 30","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 31","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 32","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 33","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 34","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 35","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Numbers 36","children":[{"string":"Book:: [[Numbers]]"}]},{"title":"Deuteronomy 1","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 2","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 3","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 4","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 5","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 6","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 7","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 8","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 9","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 10","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 11","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 12","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 13","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 14","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 15","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 16","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 17","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 18","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 19","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 20","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 21","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 22","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 23","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 24","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 25","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 26","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 27","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 28","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 29","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 30","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 31","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 32","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 33","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Deuteronomy 34","children":[{"string":"Book:: [[Deuteronomy]]"}]},{"title":"Joshua 1","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 2","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 3","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 4","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 5","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 6","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 7","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 8","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 9","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 10","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 11","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 12","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 13","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 14","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 15","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 16","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 17","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 18","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 19","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 20","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 21","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 22","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 23","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Joshua 24","children":[{"string":"Book:: [[Joshua]]"}]},{"title":"Judges 1","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 2","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 3","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 4","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 5","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 6","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 7","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 8","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 9","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 10","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 11","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 12","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 13","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 14","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 15","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 16","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 17","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 18","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 19","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 20","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Judges 21","children":[{"string":"Book:: [[Judges]]"}]},{"title":"Ruth 1","children":[{"string":"Book:: [[Ruth]]"}]},{"title":"Ruth 2","children":[{"string":"Book:: [[Ruth]]"}]},{"title":"Ruth 3","children":[{"string":"Book:: [[Ruth]]"}]},{"title":"Ruth 4","children":[{"string":"Book:: [[Ruth]]"}]},{"title":"1 Samuel 1","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 2","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 3","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 4","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 5","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 6","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 7","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 8","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 9","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 10","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 11","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 12","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 13","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 14","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 15","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 16","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 17","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 18","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 19","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 20","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 21","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 22","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 23","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 24","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 25","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 26","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 27","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 28","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 29","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 30","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"1 Samuel 31","children":[{"string":"Book:: [[1 Samuel]]"}]},{"title":"2 Samuel 1","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 2","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 3","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 4","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 5","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 6","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 7","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 8","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 9","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 10","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 11","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 12","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 13","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 14","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 15","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 16","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 17","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 18","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 19","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 20","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 21","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 22","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 23","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"2 Samuel 24","children":[{"string":"Book:: [[2 Samuel]]"}]},{"title":"1 Kings 1","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 2","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 3","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 4","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 5","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 6","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 7","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 8","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 9","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 10","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 11","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 12","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 13","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 14","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 15","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 16","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 17","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 18","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 19","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 20","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 21","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"1 Kings 22","children":[{"string":"Book:: [[1 Kings]]"}]},{"title":"2 Kings 1","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 2","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 3","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 4","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 5","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 6","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 7","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 8","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 9","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 10","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 11","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 12","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 13","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 14","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 15","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 16","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 17","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 18","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 19","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 20","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 21","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 22","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 23","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 24","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"2 Kings 25","children":[{"string":"Book:: [[2 Kings]]"}]},{"title":"1 Chronicles 1","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 2","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 3","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 4","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 5","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 6","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 7","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 8","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 9","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 10","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 11","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 12","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 13","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 14","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 15","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 16","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 17","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 18","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 19","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 20","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 21","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 22","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 23","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 24","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 25","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 26","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 27","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 28","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"1 Chronicles 29","children":[{"string":"Book:: [[1 Chronicles]]"}]},{"title":"2 Chronicles 1","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 2","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 3","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 4","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 5","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 6","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 7","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 8","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 9","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 10","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 11","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 12","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 13","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 14","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 15","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 16","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 17","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 18","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 19","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 20","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 21","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 22","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 23","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 24","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 25","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 26","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 27","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 28","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 29","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 30","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 31","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 32","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 33","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 34","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 35","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"2 Chronicles 36","children":[{"string":"Book:: [[2 Chronicles]]"}]},{"title":"Ezra 1","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 2","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 3","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 4","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 5","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 6","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 7","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 8","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 9","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Ezra 10","children":[{"string":"Book:: [[Ezra]]"}]},{"title":"Nehemiah 1","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 2","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 3","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 4","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 5","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 6","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 7","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 8","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 9","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 10","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 11","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 12","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Nehemiah 13","children":[{"string":"Book:: [[Nehemiah]]"}]},{"title":"Esther 1","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 2","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 3","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 4","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 5","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 6","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 7","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 8","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 9","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Esther 10","children":[{"string":"Book:: [[Esther]]"}]},{"title":"Job 1","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 2","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 3","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 4","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 5","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 6","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 7","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 8","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 9","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 10","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 11","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 12","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 13","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 14","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 15","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 16","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 17","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 18","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 19","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 20","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 21","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 22","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 23","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 24","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 25","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 26","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 27","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 28","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 29","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 30","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 31","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 32","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 33","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 34","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 35","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 36","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 37","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 38","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 39","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 40","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 41","children":[{"string":"Book:: [[Job]]"}]},{"title":"Job 42","children":[{"string":"Book:: [[Job]]"}]},{"title":"Psalm 1","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 2","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 3","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 4","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 5","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 6","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 7","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 8","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 9","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 10","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 11","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 12","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 13","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 14","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 15","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 16","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 17","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 18","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 19","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 20","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 21","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 22","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 23","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 24","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 25","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 26","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 27","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 28","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 29","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 30","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 31","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 32","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 33","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 34","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 35","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 36","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 37","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 38","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 39","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 40","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 41","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 42","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 43","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 44","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 45","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 46","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 47","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 48","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 49","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 50","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 51","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 52","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 53","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 54","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 55","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 56","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 57","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 58","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 59","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 60","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 61","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 62","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 63","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 64","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 65","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 66","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 67","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 68","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 69","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 70","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 71","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 72","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 73","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 74","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 75","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 76","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 77","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 78","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 79","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 80","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 81","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 82","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 83","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 84","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 85","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 86","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 87","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 88","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 89","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 90","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 91","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 92","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 93","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 94","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 95","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 96","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 97","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 98","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 99","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 100","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 101","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 102","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 103","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 104","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 105","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 106","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 107","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 108","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 109","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 110","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 111","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 112","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 113","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 114","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 115","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 116","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 117","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 118","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 119","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 120","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 121","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 122","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 123","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 124","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 125","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 126","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 127","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 128","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 129","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 130","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 131","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 132","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 133","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 134","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 135","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 136","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 137","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 138","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 139","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 140","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 141","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 142","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 143","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 144","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 145","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 146","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 147","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 148","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 149","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Psalm 150","children":[{"string":"Book:: [[Psalm]]"}]},{"title":"Proverbs 1","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 2","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 3","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 4","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 5","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 6","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 7","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 8","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 9","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 10","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 11","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 12","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 13","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 14","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 15","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 16","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 17","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 18","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 19","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 20","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 21","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 22","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 23","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 24","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 25","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 26","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 27","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 28","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 29","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 30","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Proverbs 31","children":[{"string":"Book:: [[Proverbs]]"}]},{"title":"Ecclesiastes 1","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 2","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 3","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 4","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 5","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 6","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 7","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 8","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 9","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 10","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 11","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Ecclesiastes 12","children":[{"string":"Book:: [[Ecclesiastes]]"}]},{"title":"Song of Solomon 1","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Song of Solomon 2","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Song of Solomon 3","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Song of Solomon 4","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Song of Solomon 5","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Song of Solomon 6","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Song of Solomon 7","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Song of Solomon 8","children":[{"string":"Book:: [[Song of Solomon]]"}]},{"title":"Isaiah 1","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 2","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 3","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 4","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 5","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 6","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 7","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 8","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 9","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 10","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 11","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 12","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 13","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 14","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 15","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 16","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 17","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 18","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 19","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 20","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 21","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 22","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 23","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 24","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 25","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 26","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 27","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 28","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 29","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 30","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 31","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 32","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 33","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 34","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 35","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 36","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 37","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 38","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 39","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 40","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 41","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 42","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 43","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 44","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 45","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 46","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 47","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 48","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 49","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 50","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 51","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 52","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 53","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 54","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 55","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 56","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 57","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 58","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 59","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 60","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 61","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 62","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 63","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 64","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 65","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Isaiah 66","children":[{"string":"Book:: [[Isaiah]]"}]},{"title":"Jeremiah 1","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 2","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 3","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 4","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 5","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 6","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 7","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 8","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 9","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 10","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 11","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 12","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 13","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 14","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 15","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 16","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 17","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 18","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 19","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 20","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 21","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 22","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 23","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 24","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 25","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 26","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 27","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 28","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 29","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 30","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 31","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 32","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 33","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 34","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 35","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 36","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 37","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 38","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 39","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 40","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 41","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 42","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 43","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 44","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 45","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 46","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 47","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 48","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 49","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 50","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 51","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Jeremiah 52","children":[{"string":"Book:: [[Jeremiah]]"}]},{"title":"Lamentations 1","children":[{"string":"Book:: [[Lamentations]]"}]},{"title":"Lamentations 2","children":[{"string":"Book:: [[Lamentations]]"}]},{"title":"Lamentations 3","children":[{"string":"Book:: [[Lamentations]]"}]},{"title":"Lamentations 4","children":[{"string":"Book:: [[Lamentations]]"}]},{"title":"Lamentations 5","children":[{"string":"Book:: [[Lamentations]]"}]},{"title":"Ezekiel 1","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 2","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 3","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 4","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 5","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 6","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 7","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 8","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 9","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 10","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 11","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 12","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 13","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 14","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 15","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 16","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 17","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 18","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 19","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 20","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 21","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 22","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 23","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 24","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 25","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 26","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 27","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 28","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 29","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 30","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 31","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 32","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 33","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 34","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 35","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 36","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 37","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 38","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 39","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 40","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 41","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 42","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 43","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 44","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 45","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 46","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 47","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Ezekiel 48","children":[{"string":"Book:: [[Ezekiel]]"}]},{"title":"Daniel 1","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 2","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 3","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 4","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 5","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 6","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 7","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 8","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 9","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 10","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 11","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Daniel 12","children":[{"string":"Book:: [[Daniel]]"}]},{"title":"Hosea 1","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 2","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 3","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 4","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 5","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 6","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 7","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 8","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 9","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 10","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 11","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 12","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 13","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Hosea 14","children":[{"string":"Book:: [[Hosea]]"}]},{"title":"Joel 1","children":[{"string":"Book:: [[Joel]]"}]},{"title":"Joel 2","children":[{"string":"Book:: [[Joel]]"}]},{"title":"Joel 3","children":[{"string":"Book:: [[Joel]]"}]},{"title":"Amos 1","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 2","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 3","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 4","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 5","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 6","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 7","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 8","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Amos 9","children":[{"string":"Book:: [[Amos]]"}]},{"title":"Obadiah 1","children":[{"string":"Book:: [[Obadiah]]"}]},{"title":"Jonah 1","children":[{"string":"Book:: [[Jonah]]"}]},{"title":"Jonah 2","children":[{"string":"Book:: [[Jonah]]"}]},{"title":"Jonah 3","children":[{"string":"Book:: [[Jonah]]"}]},{"title":"Jonah 4","children":[{"string":"Book:: [[Jonah]]"}]},{"title":"Micah 1","children":[{"string":"Book:: [[Micah]]"}]},{"title":"Micah 2","children":[{"string":"Book:: [[Micah]]"}]},{"title":"Micah 3","children":[{"string":"Book:: [[Micah]]"}]},{"title":"Micah 4","children":[{"string":"Book:: [[Micah]]"}]},{"title":"Micah 5","children":[{"string":"Book:: [[Micah]]"}]},{"title":"Micah 6","children":[{"string":"Book:: [[Micah]]"}]},{"title":"Micah 7","children":[{"string":"Book:: [[Micah]]"}]},{"title":"Nahum 1","children":[{"string":"Book:: [[Nahum]]"}]},{"title":"Nahum 2","children":[{"string":"Book:: [[Nahum]]"}]},{"title":"Nahum 3","children":[{"string":"Book:: [[Nahum]]"}]},{"title":"Habakkuk 1","children":[{"string":"Book:: [[Habakkuk]]"}]},{"title":"Habakkuk 2","children":[{"string":"Book:: [[Habakkuk]]"}]},{"title":"Habakkuk 3","children":[{"string":"Book:: [[Habakkuk]]"}]},{"title":"Zephaniah 1","children":[{"string":"Book:: [[Zephaniah]]"}]},{"title":"Zephaniah 2","children":[{"string":"Book:: [[Zephaniah]]"}]},{"title":"Zephaniah 3","children":[{"string":"Book:: [[Zephaniah]]"}]},{"title":"Haggai 1","children":[{"string":"Book:: [[Haggai]]"}]},{"title":"Haggai 2","children":[{"string":"Book:: [[Haggai]]"}]},{"title":"Zechariah 1","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 2","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 3","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 4","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 5","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 6","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 7","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 8","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 9","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 10","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 11","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 12","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 13","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Zechariah 14","children":[{"string":"Book:: [[Zechariah]]"}]},{"title":"Malachi 1","children":[{"string":"Book:: [[Malachi]]"}]},{"title":"Malachi 2","children":[{"string":"Book:: [[Malachi]]"}]},{"title":"Malachi 3","children":[{"string":"Book:: [[Malachi]]"}]},{"title":"Malachi 4","children":[{"string":"Book:: [[Malachi]]"}]},{"title":"Matthew 1","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 2","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 3","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 4","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 5","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 6","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 7","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 8","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 9","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 10","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 11","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 12","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 13","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 14","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 15","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 16","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 17","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 18","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 19","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 20","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 21","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 22","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 23","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 24","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 25","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 26","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 27","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Matthew 28","children":[{"string":"Book:: [[Matthew]]"}]},{"title":"Mark 1","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 2","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 3","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 4","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 5","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 6","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 7","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 8","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 9","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 10","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 11","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 12","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 13","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 14","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 15","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Mark 16","children":[{"string":"Book:: [[Mark]]"}]},{"title":"Luke 1","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 2","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 3","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 4","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 5","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 6","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 7","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 8","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 9","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 10","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 11","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 12","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 13","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 14","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 15","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 16","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 17","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 18","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 19","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 20","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 21","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 22","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 23","children":[{"string":"Book:: [[Luke]]"}]},{"title":"Luke 24","children":[{"string":"Book:: [[Luke]]"}]},{"title":"John 1","children":[{"string":"Book:: [[John]]"}]},{"title":"John 2","children":[{"string":"Book:: [[John]]"}]},{"title":"John 3","children":[{"string":"Book:: [[John]]"}]},{"title":"John 4","children":[{"string":"Book:: [[John]]"}]},{"title":"John 5","children":[{"string":"Book:: [[John]]"}]},{"title":"John 6","children":[{"string":"Book:: [[John]]"}]},{"title":"John 7","children":[{"string":"Book:: [[John]]"}]},{"title":"John 8","children":[{"string":"Book:: [[John]]"}]},{"title":"John 9","children":[{"string":"Book:: [[John]]"}]},{"title":"John 10","children":[{"string":"Book:: [[John]]"}]},{"title":"John 11","children":[{"string":"Book:: [[John]]"}]},{"title":"John 12","children":[{"string":"Book:: [[John]]"}]},{"title":"John 13","children":[{"string":"Book:: [[John]]"}]},{"title":"John 14","children":[{"string":"Book:: [[John]]"}]},{"title":"John 15","children":[{"string":"Book:: [[John]]"}]},{"title":"John 16","children":[{"string":"Book:: [[John]]"}]},{"title":"John 17","children":[{"string":"Book:: [[John]]"}]},{"title":"John 18","children":[{"string":"Book:: [[John]]"}]},{"title":"John 19","children":[{"string":"Book:: [[John]]"}]},{"title":"John 20","children":[{"string":"Book:: [[John]]"}]},{"title":"John 21","children":[{"string":"Book:: [[John]]"}]},{"title":"Acts 1","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 2","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 3","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 4","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 5","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 6","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 7","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 8","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 9","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 10","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 11","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 12","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 13","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 14","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 15","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 16","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 17","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 18","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 19","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 20","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 21","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 22","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 23","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 24","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 25","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 26","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 27","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Acts 28","children":[{"string":"Book:: [[Acts]]"}]},{"title":"Romans 1","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 2","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 3","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 4","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 5","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 6","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 7","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 8","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 9","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 10","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 11","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 12","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 13","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 14","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 15","children":[{"string":"Book:: [[Romans]]"}]},{"title":"Romans 16","children":[{"string":"Book:: [[Romans]]"}]},{"title":"1 Corinthians 1","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 2","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 3","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 4","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 5","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 6","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 7","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 8","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 9","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 10","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 11","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 12","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 13","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 14","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 15","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"1 Corinthians 16","children":[{"string":"Book:: [[1 Corinthians]]"}]},{"title":"2 Corinthians 1","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 2","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 3","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 4","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 5","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 6","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 7","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 8","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 9","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 10","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 11","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 12","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"2 Corinthians 13","children":[{"string":"Book:: [[2 Corinthians]]"}]},{"title":"Galatians 1","children":[{"string":"Book:: [[Galatians]]"}]},{"title":"Galatians 2","children":[{"string":"Book:: [[Galatians]]"}]},{"title":"Galatians 3","children":[{"string":"Book:: [[Galatians]]"}]},{"title":"Galatians 4","children":[{"string":"Book:: [[Galatians]]"}]},{"title":"Galatians 5","children":[{"string":"Book:: [[Galatians]]"}]},{"title":"Galatians 6","children":[{"string":"Book:: [[Galatians]]"}]},{"title":"Ephesians 1","children":[{"string":"Book:: [[Ephesians]]"}]},{"title":"Ephesians 2","children":[{"string":"Book:: [[Ephesians]]"}]},{"title":"Ephesians 3","children":[{"string":"Book:: [[Ephesians]]"}]},{"title":"Ephesians 4","children":[{"string":"Book:: [[Ephesians]]"}]},{"title":"Ephesians 5","children":[{"string":"Book:: [[Ephesians]]"}]},{"title":"Ephesians 6","children":[{"string":"Book:: [[Ephesians]]"}]},{"title":"Philippians 1","children":[{"string":"Book:: [[Philippians]]"}]},{"title":"Philippians 2","children":[{"string":"Book:: [[Philippians]]"}]},{"title":"Philippians 3","children":[{"string":"Book:: [[Philippians]]"}]},{"title":"Philippians 4","children":[{"string":"Book:: [[Philippians]]"}]},{"title":"Colossians 1","children":[{"string":"Book:: [[Colossians]]"}]},{"title":"Colossians 2","children":[{"string":"Book:: [[Colossians]]"}]},{"title":"Colossians 3","children":[{"string":"Book:: [[Colossians]]"}]},{"title":"Colossians 4","children":[{"string":"Book:: [[Colossians]]"}]},{"title":"1 Thessalonians 1","children":[{"string":"Book:: [[1 Thessalonians]]"}]},{"title":"1 Thessalonians 2","children":[{"string":"Book:: [[1 Thessalonians]]"}]},{"title":"1 Thessalonians 3","children":[{"string":"Book:: [[1 Thessalonians]]"}]},{"title":"1 Thessalonians 4","children":[{"string":"Book:: [[1 Thessalonians]]"}]},{"title":"1 Thessalonians 5","children":[{"string":"Book:: [[1 Thessalonians]]"}]},{"title":"2 Thessalonians 1","children":[{"string":"Book:: [[2 Thessalonians]]"}]},{"title":"2 Thessalonians 2","children":[{"string":"Book:: [[2 Thessalonians]]"}]},{"title":"2 Thessalonians 3","children":[{"string":"Book:: [[2 Thessalonians]]"}]},{"title":"1 Timothy 1","children":[{"string":"Book:: [[1 Timothy]]"}]},{"title":"1 Timothy 2","children":[{"string":"Book:: [[1 Timothy]]"}]},{"title":"1 Timothy 3","children":[{"string":"Book:: [[1 Timothy]]"}]},{"title":"1 Timothy 4","children":[{"string":"Book:: [[1 Timothy]]"}]},{"title":"1 Timothy 5","children":[{"string":"Book:: [[1 Timothy]]"}]},{"title":"1 Timothy 6","children":[{"string":"Book:: [[1 Timothy]]"}]},{"title":"2 Timothy 1","children":[{"string":"Book:: [[2 Timothy]]"}]},{"title":"2 Timothy 2","children":[{"string":"Book:: [[2 Timothy]]"}]},{"title":"2 Timothy 3","children":[{"string":"Book:: [[2 Timothy]]"}]},{"title":"2 Timothy 4","children":[{"string":"Book:: [[2 Timothy]]"}]},{"title":"Titus 1","children":[{"string":"Book:: [[Titus]]"}]},{"title":"Titus 2","children":[{"string":"Book:: [[Titus]]"}]},{"title":"Titus 3","children":[{"string":"Book:: [[Titus]]"}]},{"title":"Philemon 1","children":[{"string":"Book:: [[Philemon]]"}]},{"title":"Hebrews 1","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 2","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 3","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 4","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 5","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 6","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 7","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 8","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 9","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 10","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 11","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 12","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"Hebrews 13","children":[{"string":"Book:: [[Hebrews]]"}]},{"title":"James 1","children":[{"string":"Book:: [[James]]"}]},{"title":"James 2","children":[{"string":"Book:: [[James]]"}]},{"title":"James 3","children":[{"string":"Book:: [[James]]"}]},{"title":"James 4","children":[{"string":"Book:: [[James]]"}]},{"title":"James 5","children":[{"string":"Book:: [[James]]"}]},{"title":"1 Peter 1","children":[{"string":"Book:: [[1 Peter]]"}]},{"title":"1 Peter 2","children":[{"string":"Book:: [[1 Peter]]"}]},{"title":"1 Peter 3","children":[{"string":"Book:: [[1 Peter]]"}]},{"title":"1 Peter 4","children":[{"string":"Book:: [[1 Peter]]"}]},{"title":"1 Peter 5","children":[{"string":"Book:: [[1 Peter]]"}]},{"title":"2 Peter 1","children":[{"string":"Book:: [[2 Peter]]"}]},{"title":"2 Peter 2","children":[{"string":"Book:: [[2 Peter]]"}]},{"title":"2 Peter 3","children":[{"string":"Book:: [[2 Peter]]"}]},{"title":"1 John 1","children":[{"string":"Book:: [[1 John]]"}]},{"title":"1 John 2","children":[{"string":"Book:: [[1 John]]"}]},{"title":"1 John 3","children":[{"string":"Book:: [[1 John]]"}]},{"title":"1 John 4","children":[{"string":"Book:: [[1 John]]"}]},{"title":"1 John 5","children":[{"string":"Book:: [[1 John]]"}]},{"title":"2 John 1","children":[{"string":"Book:: [[2 John]]"}]},{"title":"3 John 1","children":[{"string":"Book:: [[3 John]]"}]},{"title":"Jude 1","children":[{"string":"Book:: [[Jude]]"}]},{"title":"Revelation 1","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 2","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 3","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 4","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 5","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 6","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 7","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 8","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 9","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 10","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 11","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 12","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 13","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 14","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 15","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 16","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 17","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 18","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 19","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 20","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 21","children":[{"string":"Book:: [[Revelation]]"}]},{"title":"Revelation 22","children":[{"string":"Book:: [[Revelation]]"}]}] 2 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import1/Import1-books-with_testament.csv: -------------------------------------------------------------------------------- 1 | Page Name,Testament 2 | Genesis,[[Old Testament]] 3 | Exodus,[[Old Testament]] 4 | Leviticus,[[Old Testament]] 5 | Numbers,[[Old Testament]] 6 | Deuteronomy,[[Old Testament]] 7 | Joshua,[[Old Testament]] 8 | Judges,[[Old Testament]] 9 | Ruth,[[Old Testament]] 10 | 1 Samuel,[[Old Testament]] 11 | 2 Samuel,[[Old Testament]] 12 | 1 Kings,[[Old Testament]] 13 | 2 Kings,[[Old Testament]] 14 | 1 Chronicles,[[Old Testament]] 15 | 2 Chronicles,[[Old Testament]] 16 | Ezra,[[Old Testament]] 17 | Nehemiah,[[Old Testament]] 18 | Esther,[[Old Testament]] 19 | Job,[[Old Testament]] 20 | Psalm,[[Old Testament]] 21 | Proverbs,[[Old Testament]] 22 | Ecclesiastes,[[Old Testament]] 23 | Song of Solomon,[[Old Testament]] 24 | Isaiah,[[Old Testament]] 25 | Jeremiah,[[Old Testament]] 26 | Lamentations,[[Old Testament]] 27 | Ezekiel,[[Old Testament]] 28 | Daniel,[[Old Testament]] 29 | Hosea,[[Old Testament]] 30 | Joel,[[Old Testament]] 31 | Amos,[[Old Testament]] 32 | Obadiah,[[Old Testament]] 33 | Jonah,[[Old Testament]] 34 | Micah,[[Old Testament]] 35 | Nahum,[[Old Testament]] 36 | Habakkuk,[[Old Testament]] 37 | Zephaniah,[[Old Testament]] 38 | Haggai,[[Old Testament]] 39 | Zechariah,[[Old Testament]] 40 | Malachi,[[Old Testament]] 41 | Matthew,[[New Testament]] 42 | Mark,[[New Testament]] 43 | Luke,[[New Testament]] 44 | John,[[New Testament]] 45 | Acts,[[New Testament]] 46 | Romans,[[New Testament]] 47 | 1 Corinthians,[[New Testament]] 48 | 2 Corinthians,[[New Testament]] 49 | Galatians,[[New Testament]] 50 | Ephesians,[[New Testament]] 51 | Philippians,[[New Testament]] 52 | Colossians,[[New Testament]] 53 | 1 Thessalonians,[[New Testament]] 54 | 2 Thessalonians,[[New Testament]] 55 | 1 Timothy,[[New Testament]] 56 | 2 Timothy,[[New Testament]] 57 | Titus,[[New Testament]] 58 | Philemon,[[New Testament]] 59 | Hebrews,[[New Testament]] 60 | James,[[New Testament]] 61 | 1 Peter,[[New Testament]] 62 | 2 Peter,[[New Testament]] 63 | 1 John,[[New Testament]] 64 | 2 John,[[New Testament]] 65 | 3 John,[[New Testament]] 66 | Jude,[[New Testament]] 67 | Revelation,[[New Testament]] 68 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import1/Results/CSV_import_Import1-books-with_testament.csv_20200517_001454.json: -------------------------------------------------------------------------------- 1 | [{"title":"Genesis","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Exodus","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Leviticus","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Numbers","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Deuteronomy","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Joshua","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Judges","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ruth","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"1 Samuel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"2 Samuel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"1 Kings","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"2 Kings","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"1 Chronicles","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"2 Chronicles","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ezra","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Nehemiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Esther","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Job","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Psalm","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Proverbs","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ecclesiastes","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Song of Solomon","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Isaiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Jeremiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Lamentations","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Ezekiel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Daniel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Hosea","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Joel","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Amos","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Obadiah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Jonah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Micah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Nahum","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Habakkuk","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Zephaniah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Haggai","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Zechariah","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Malachi","children":[{"string":"Testament:: [[Old Testament]]"}]},{"title":"Matthew","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Mark","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Luke","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Acts","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Romans","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Corinthians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Corinthians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Galatians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Ephesians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Philippians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Colossians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Thessalonians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Thessalonians","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Timothy","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Timothy","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Titus","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Philemon","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Hebrews","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"James","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 Peter","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 Peter","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"1 John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"2 John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"3 John","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Jude","children":[{"string":"Testament:: [[New Testament]]"}]},{"title":"Revelation","children":[{"string":"Testament:: [[New Testament]]"}]}] 2 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import1/Results/CSV_import_Import1-books-with_testament.csv_20200517_001454.md: -------------------------------------------------------------------------------- 1 | csv-date:: [[May 17th, 2020]] 2 | csv-time:: 00:14 3 | csv-filename:: Import1-books-with_testament.csv 4 | csv-type:: 5 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import2/Import2-books-chapters-with_book_attr.csv: -------------------------------------------------------------------------------- 1 | Page,Book 2 | Genesis 1,[[Genesis]] 3 | Genesis 2,[[Genesis]] 4 | Genesis 3,[[Genesis]] 5 | Genesis 4,[[Genesis]] 6 | Genesis 5,[[Genesis]] 7 | Genesis 6,[[Genesis]] 8 | Genesis 7,[[Genesis]] 9 | Genesis 8,[[Genesis]] 10 | Genesis 9,[[Genesis]] 11 | Genesis 10,[[Genesis]] 12 | Genesis 11,[[Genesis]] 13 | Genesis 12,[[Genesis]] 14 | Genesis 13,[[Genesis]] 15 | Genesis 14,[[Genesis]] 16 | Genesis 15,[[Genesis]] 17 | Genesis 16,[[Genesis]] 18 | Genesis 17,[[Genesis]] 19 | Genesis 18,[[Genesis]] 20 | Genesis 19,[[Genesis]] 21 | Genesis 20,[[Genesis]] 22 | Genesis 21,[[Genesis]] 23 | Genesis 22,[[Genesis]] 24 | Genesis 23,[[Genesis]] 25 | Genesis 24,[[Genesis]] 26 | Genesis 25,[[Genesis]] 27 | Genesis 26,[[Genesis]] 28 | Genesis 27,[[Genesis]] 29 | Genesis 28,[[Genesis]] 30 | Genesis 29,[[Genesis]] 31 | Genesis 30,[[Genesis]] 32 | Genesis 31,[[Genesis]] 33 | Genesis 32,[[Genesis]] 34 | Genesis 33,[[Genesis]] 35 | Genesis 34,[[Genesis]] 36 | Genesis 35,[[Genesis]] 37 | Genesis 36,[[Genesis]] 38 | Genesis 37,[[Genesis]] 39 | Genesis 38,[[Genesis]] 40 | Genesis 39,[[Genesis]] 41 | Genesis 40,[[Genesis]] 42 | Genesis 41,[[Genesis]] 43 | Genesis 42,[[Genesis]] 44 | Genesis 43,[[Genesis]] 45 | Genesis 44,[[Genesis]] 46 | Genesis 45,[[Genesis]] 47 | Genesis 46,[[Genesis]] 48 | Genesis 47,[[Genesis]] 49 | Genesis 48,[[Genesis]] 50 | Genesis 49,[[Genesis]] 51 | Genesis 50,[[Genesis]] 52 | Exodus 1,[[Exodus]] 53 | Exodus 2,[[Exodus]] 54 | Exodus 3,[[Exodus]] 55 | Exodus 4,[[Exodus]] 56 | Exodus 5,[[Exodus]] 57 | Exodus 6,[[Exodus]] 58 | Exodus 7,[[Exodus]] 59 | Exodus 8,[[Exodus]] 60 | Exodus 9,[[Exodus]] 61 | Exodus 10,[[Exodus]] 62 | Exodus 11,[[Exodus]] 63 | Exodus 12,[[Exodus]] 64 | Exodus 13,[[Exodus]] 65 | Exodus 14,[[Exodus]] 66 | Exodus 15,[[Exodus]] 67 | Exodus 16,[[Exodus]] 68 | Exodus 17,[[Exodus]] 69 | Exodus 18,[[Exodus]] 70 | Exodus 19,[[Exodus]] 71 | Exodus 20,[[Exodus]] 72 | Exodus 21,[[Exodus]] 73 | Exodus 22,[[Exodus]] 74 | Exodus 23,[[Exodus]] 75 | Exodus 24,[[Exodus]] 76 | Exodus 25,[[Exodus]] 77 | Exodus 26,[[Exodus]] 78 | Exodus 27,[[Exodus]] 79 | Exodus 28,[[Exodus]] 80 | Exodus 29,[[Exodus]] 81 | Exodus 30,[[Exodus]] 82 | Exodus 31,[[Exodus]] 83 | Exodus 32,[[Exodus]] 84 | Exodus 33,[[Exodus]] 85 | Exodus 34,[[Exodus]] 86 | Exodus 35,[[Exodus]] 87 | Exodus 36,[[Exodus]] 88 | Exodus 37,[[Exodus]] 89 | Exodus 38,[[Exodus]] 90 | Exodus 39,[[Exodus]] 91 | Exodus 40,[[Exodus]] 92 | Leviticus 1,[[Leviticus]] 93 | Leviticus 2,[[Leviticus]] 94 | Leviticus 3,[[Leviticus]] 95 | Leviticus 4,[[Leviticus]] 96 | Leviticus 5,[[Leviticus]] 97 | Leviticus 6,[[Leviticus]] 98 | Leviticus 7,[[Leviticus]] 99 | Leviticus 8,[[Leviticus]] 100 | Leviticus 9,[[Leviticus]] 101 | Leviticus 10,[[Leviticus]] 102 | Leviticus 11,[[Leviticus]] 103 | Leviticus 12,[[Leviticus]] 104 | Leviticus 13,[[Leviticus]] 105 | Leviticus 14,[[Leviticus]] 106 | Leviticus 15,[[Leviticus]] 107 | Leviticus 16,[[Leviticus]] 108 | Leviticus 17,[[Leviticus]] 109 | Leviticus 18,[[Leviticus]] 110 | Leviticus 19,[[Leviticus]] 111 | Leviticus 20,[[Leviticus]] 112 | Leviticus 21,[[Leviticus]] 113 | Leviticus 22,[[Leviticus]] 114 | Leviticus 23,[[Leviticus]] 115 | Leviticus 24,[[Leviticus]] 116 | Leviticus 25,[[Leviticus]] 117 | Leviticus 26,[[Leviticus]] 118 | Leviticus 27,[[Leviticus]] 119 | Numbers 1,[[Numbers]] 120 | Numbers 2,[[Numbers]] 121 | Numbers 3,[[Numbers]] 122 | Numbers 4,[[Numbers]] 123 | Numbers 5,[[Numbers]] 124 | Numbers 6,[[Numbers]] 125 | Numbers 7,[[Numbers]] 126 | Numbers 8,[[Numbers]] 127 | Numbers 9,[[Numbers]] 128 | Numbers 10,[[Numbers]] 129 | Numbers 11,[[Numbers]] 130 | Numbers 12,[[Numbers]] 131 | Numbers 13,[[Numbers]] 132 | Numbers 14,[[Numbers]] 133 | Numbers 15,[[Numbers]] 134 | Numbers 16,[[Numbers]] 135 | Numbers 17,[[Numbers]] 136 | Numbers 18,[[Numbers]] 137 | Numbers 19,[[Numbers]] 138 | Numbers 20,[[Numbers]] 139 | Numbers 21,[[Numbers]] 140 | Numbers 22,[[Numbers]] 141 | Numbers 23,[[Numbers]] 142 | Numbers 24,[[Numbers]] 143 | Numbers 25,[[Numbers]] 144 | Numbers 26,[[Numbers]] 145 | Numbers 27,[[Numbers]] 146 | Numbers 28,[[Numbers]] 147 | Numbers 29,[[Numbers]] 148 | Numbers 30,[[Numbers]] 149 | Numbers 31,[[Numbers]] 150 | Numbers 32,[[Numbers]] 151 | Numbers 33,[[Numbers]] 152 | Numbers 34,[[Numbers]] 153 | Numbers 35,[[Numbers]] 154 | Numbers 36,[[Numbers]] 155 | Deuteronomy 1,[[Deuteronomy]] 156 | Deuteronomy 2,[[Deuteronomy]] 157 | Deuteronomy 3,[[Deuteronomy]] 158 | Deuteronomy 4,[[Deuteronomy]] 159 | Deuteronomy 5,[[Deuteronomy]] 160 | Deuteronomy 6,[[Deuteronomy]] 161 | Deuteronomy 7,[[Deuteronomy]] 162 | Deuteronomy 8,[[Deuteronomy]] 163 | Deuteronomy 9,[[Deuteronomy]] 164 | Deuteronomy 10,[[Deuteronomy]] 165 | Deuteronomy 11,[[Deuteronomy]] 166 | Deuteronomy 12,[[Deuteronomy]] 167 | Deuteronomy 13,[[Deuteronomy]] 168 | Deuteronomy 14,[[Deuteronomy]] 169 | Deuteronomy 15,[[Deuteronomy]] 170 | Deuteronomy 16,[[Deuteronomy]] 171 | Deuteronomy 17,[[Deuteronomy]] 172 | Deuteronomy 18,[[Deuteronomy]] 173 | Deuteronomy 19,[[Deuteronomy]] 174 | Deuteronomy 20,[[Deuteronomy]] 175 | Deuteronomy 21,[[Deuteronomy]] 176 | Deuteronomy 22,[[Deuteronomy]] 177 | Deuteronomy 23,[[Deuteronomy]] 178 | Deuteronomy 24,[[Deuteronomy]] 179 | Deuteronomy 25,[[Deuteronomy]] 180 | Deuteronomy 26,[[Deuteronomy]] 181 | Deuteronomy 27,[[Deuteronomy]] 182 | Deuteronomy 28,[[Deuteronomy]] 183 | Deuteronomy 29,[[Deuteronomy]] 184 | Deuteronomy 30,[[Deuteronomy]] 185 | Deuteronomy 31,[[Deuteronomy]] 186 | Deuteronomy 32,[[Deuteronomy]] 187 | Deuteronomy 33,[[Deuteronomy]] 188 | Deuteronomy 34,[[Deuteronomy]] 189 | Joshua 1,[[Joshua]] 190 | Joshua 2,[[Joshua]] 191 | Joshua 3,[[Joshua]] 192 | Joshua 4,[[Joshua]] 193 | Joshua 5,[[Joshua]] 194 | Joshua 6,[[Joshua]] 195 | Joshua 7,[[Joshua]] 196 | Joshua 8,[[Joshua]] 197 | Joshua 9,[[Joshua]] 198 | Joshua 10,[[Joshua]] 199 | Joshua 11,[[Joshua]] 200 | Joshua 12,[[Joshua]] 201 | Joshua 13,[[Joshua]] 202 | Joshua 14,[[Joshua]] 203 | Joshua 15,[[Joshua]] 204 | Joshua 16,[[Joshua]] 205 | Joshua 17,[[Joshua]] 206 | Joshua 18,[[Joshua]] 207 | Joshua 19,[[Joshua]] 208 | Joshua 20,[[Joshua]] 209 | Joshua 21,[[Joshua]] 210 | Joshua 22,[[Joshua]] 211 | Joshua 23,[[Joshua]] 212 | Joshua 24,[[Joshua]] 213 | Judges 1,[[Judges]] 214 | Judges 2,[[Judges]] 215 | Judges 3,[[Judges]] 216 | Judges 4,[[Judges]] 217 | Judges 5,[[Judges]] 218 | Judges 6,[[Judges]] 219 | Judges 7,[[Judges]] 220 | Judges 8,[[Judges]] 221 | Judges 9,[[Judges]] 222 | Judges 10,[[Judges]] 223 | Judges 11,[[Judges]] 224 | Judges 12,[[Judges]] 225 | Judges 13,[[Judges]] 226 | Judges 14,[[Judges]] 227 | Judges 15,[[Judges]] 228 | Judges 16,[[Judges]] 229 | Judges 17,[[Judges]] 230 | Judges 18,[[Judges]] 231 | Judges 19,[[Judges]] 232 | Judges 20,[[Judges]] 233 | Judges 21,[[Judges]] 234 | Ruth 1,[[Ruth]] 235 | Ruth 2,[[Ruth]] 236 | Ruth 3,[[Ruth]] 237 | Ruth 4,[[Ruth]] 238 | 1 Samuel 1,[[1 Samuel]] 239 | 1 Samuel 2,[[1 Samuel]] 240 | 1 Samuel 3,[[1 Samuel]] 241 | 1 Samuel 4,[[1 Samuel]] 242 | 1 Samuel 5,[[1 Samuel]] 243 | 1 Samuel 6,[[1 Samuel]] 244 | 1 Samuel 7,[[1 Samuel]] 245 | 1 Samuel 8,[[1 Samuel]] 246 | 1 Samuel 9,[[1 Samuel]] 247 | 1 Samuel 10,[[1 Samuel]] 248 | 1 Samuel 11,[[1 Samuel]] 249 | 1 Samuel 12,[[1 Samuel]] 250 | 1 Samuel 13,[[1 Samuel]] 251 | 1 Samuel 14,[[1 Samuel]] 252 | 1 Samuel 15,[[1 Samuel]] 253 | 1 Samuel 16,[[1 Samuel]] 254 | 1 Samuel 17,[[1 Samuel]] 255 | 1 Samuel 18,[[1 Samuel]] 256 | 1 Samuel 19,[[1 Samuel]] 257 | 1 Samuel 20,[[1 Samuel]] 258 | 1 Samuel 21,[[1 Samuel]] 259 | 1 Samuel 22,[[1 Samuel]] 260 | 1 Samuel 23,[[1 Samuel]] 261 | 1 Samuel 24,[[1 Samuel]] 262 | 1 Samuel 25,[[1 Samuel]] 263 | 1 Samuel 26,[[1 Samuel]] 264 | 1 Samuel 27,[[1 Samuel]] 265 | 1 Samuel 28,[[1 Samuel]] 266 | 1 Samuel 29,[[1 Samuel]] 267 | 1 Samuel 30,[[1 Samuel]] 268 | 1 Samuel 31,[[1 Samuel]] 269 | 2 Samuel 1,[[2 Samuel]] 270 | 2 Samuel 2,[[2 Samuel]] 271 | 2 Samuel 3,[[2 Samuel]] 272 | 2 Samuel 4,[[2 Samuel]] 273 | 2 Samuel 5,[[2 Samuel]] 274 | 2 Samuel 6,[[2 Samuel]] 275 | 2 Samuel 7,[[2 Samuel]] 276 | 2 Samuel 8,[[2 Samuel]] 277 | 2 Samuel 9,[[2 Samuel]] 278 | 2 Samuel 10,[[2 Samuel]] 279 | 2 Samuel 11,[[2 Samuel]] 280 | 2 Samuel 12,[[2 Samuel]] 281 | 2 Samuel 13,[[2 Samuel]] 282 | 2 Samuel 14,[[2 Samuel]] 283 | 2 Samuel 15,[[2 Samuel]] 284 | 2 Samuel 16,[[2 Samuel]] 285 | 2 Samuel 17,[[2 Samuel]] 286 | 2 Samuel 18,[[2 Samuel]] 287 | 2 Samuel 19,[[2 Samuel]] 288 | 2 Samuel 20,[[2 Samuel]] 289 | 2 Samuel 21,[[2 Samuel]] 290 | 2 Samuel 22,[[2 Samuel]] 291 | 2 Samuel 23,[[2 Samuel]] 292 | 2 Samuel 24,[[2 Samuel]] 293 | 1 Kings 1,[[1 Kings]] 294 | 1 Kings 2,[[1 Kings]] 295 | 1 Kings 3,[[1 Kings]] 296 | 1 Kings 4,[[1 Kings]] 297 | 1 Kings 5,[[1 Kings]] 298 | 1 Kings 6,[[1 Kings]] 299 | 1 Kings 7,[[1 Kings]] 300 | 1 Kings 8,[[1 Kings]] 301 | 1 Kings 9,[[1 Kings]] 302 | 1 Kings 10,[[1 Kings]] 303 | 1 Kings 11,[[1 Kings]] 304 | 1 Kings 12,[[1 Kings]] 305 | 1 Kings 13,[[1 Kings]] 306 | 1 Kings 14,[[1 Kings]] 307 | 1 Kings 15,[[1 Kings]] 308 | 1 Kings 16,[[1 Kings]] 309 | 1 Kings 17,[[1 Kings]] 310 | 1 Kings 18,[[1 Kings]] 311 | 1 Kings 19,[[1 Kings]] 312 | 1 Kings 20,[[1 Kings]] 313 | 1 Kings 21,[[1 Kings]] 314 | 1 Kings 22,[[1 Kings]] 315 | 2 Kings 1,[[2 Kings]] 316 | 2 Kings 2,[[2 Kings]] 317 | 2 Kings 3,[[2 Kings]] 318 | 2 Kings 4,[[2 Kings]] 319 | 2 Kings 5,[[2 Kings]] 320 | 2 Kings 6,[[2 Kings]] 321 | 2 Kings 7,[[2 Kings]] 322 | 2 Kings 8,[[2 Kings]] 323 | 2 Kings 9,[[2 Kings]] 324 | 2 Kings 10,[[2 Kings]] 325 | 2 Kings 11,[[2 Kings]] 326 | 2 Kings 12,[[2 Kings]] 327 | 2 Kings 13,[[2 Kings]] 328 | 2 Kings 14,[[2 Kings]] 329 | 2 Kings 15,[[2 Kings]] 330 | 2 Kings 16,[[2 Kings]] 331 | 2 Kings 17,[[2 Kings]] 332 | 2 Kings 18,[[2 Kings]] 333 | 2 Kings 19,[[2 Kings]] 334 | 2 Kings 20,[[2 Kings]] 335 | 2 Kings 21,[[2 Kings]] 336 | 2 Kings 22,[[2 Kings]] 337 | 2 Kings 23,[[2 Kings]] 338 | 2 Kings 24,[[2 Kings]] 339 | 2 Kings 25,[[2 Kings]] 340 | 1 Chronicles 1,[[1 Chronicles]] 341 | 1 Chronicles 2,[[1 Chronicles]] 342 | 1 Chronicles 3,[[1 Chronicles]] 343 | 1 Chronicles 4,[[1 Chronicles]] 344 | 1 Chronicles 5,[[1 Chronicles]] 345 | 1 Chronicles 6,[[1 Chronicles]] 346 | 1 Chronicles 7,[[1 Chronicles]] 347 | 1 Chronicles 8,[[1 Chronicles]] 348 | 1 Chronicles 9,[[1 Chronicles]] 349 | 1 Chronicles 10,[[1 Chronicles]] 350 | 1 Chronicles 11,[[1 Chronicles]] 351 | 1 Chronicles 12,[[1 Chronicles]] 352 | 1 Chronicles 13,[[1 Chronicles]] 353 | 1 Chronicles 14,[[1 Chronicles]] 354 | 1 Chronicles 15,[[1 Chronicles]] 355 | 1 Chronicles 16,[[1 Chronicles]] 356 | 1 Chronicles 17,[[1 Chronicles]] 357 | 1 Chronicles 18,[[1 Chronicles]] 358 | 1 Chronicles 19,[[1 Chronicles]] 359 | 1 Chronicles 20,[[1 Chronicles]] 360 | 1 Chronicles 21,[[1 Chronicles]] 361 | 1 Chronicles 22,[[1 Chronicles]] 362 | 1 Chronicles 23,[[1 Chronicles]] 363 | 1 Chronicles 24,[[1 Chronicles]] 364 | 1 Chronicles 25,[[1 Chronicles]] 365 | 1 Chronicles 26,[[1 Chronicles]] 366 | 1 Chronicles 27,[[1 Chronicles]] 367 | 1 Chronicles 28,[[1 Chronicles]] 368 | 1 Chronicles 29,[[1 Chronicles]] 369 | 2 Chronicles 1,[[2 Chronicles]] 370 | 2 Chronicles 2,[[2 Chronicles]] 371 | 2 Chronicles 3,[[2 Chronicles]] 372 | 2 Chronicles 4,[[2 Chronicles]] 373 | 2 Chronicles 5,[[2 Chronicles]] 374 | 2 Chronicles 6,[[2 Chronicles]] 375 | 2 Chronicles 7,[[2 Chronicles]] 376 | 2 Chronicles 8,[[2 Chronicles]] 377 | 2 Chronicles 9,[[2 Chronicles]] 378 | 2 Chronicles 10,[[2 Chronicles]] 379 | 2 Chronicles 11,[[2 Chronicles]] 380 | 2 Chronicles 12,[[2 Chronicles]] 381 | 2 Chronicles 13,[[2 Chronicles]] 382 | 2 Chronicles 14,[[2 Chronicles]] 383 | 2 Chronicles 15,[[2 Chronicles]] 384 | 2 Chronicles 16,[[2 Chronicles]] 385 | 2 Chronicles 17,[[2 Chronicles]] 386 | 2 Chronicles 18,[[2 Chronicles]] 387 | 2 Chronicles 19,[[2 Chronicles]] 388 | 2 Chronicles 20,[[2 Chronicles]] 389 | 2 Chronicles 21,[[2 Chronicles]] 390 | 2 Chronicles 22,[[2 Chronicles]] 391 | 2 Chronicles 23,[[2 Chronicles]] 392 | 2 Chronicles 24,[[2 Chronicles]] 393 | 2 Chronicles 25,[[2 Chronicles]] 394 | 2 Chronicles 26,[[2 Chronicles]] 395 | 2 Chronicles 27,[[2 Chronicles]] 396 | 2 Chronicles 28,[[2 Chronicles]] 397 | 2 Chronicles 29,[[2 Chronicles]] 398 | 2 Chronicles 30,[[2 Chronicles]] 399 | 2 Chronicles 31,[[2 Chronicles]] 400 | 2 Chronicles 32,[[2 Chronicles]] 401 | 2 Chronicles 33,[[2 Chronicles]] 402 | 2 Chronicles 34,[[2 Chronicles]] 403 | 2 Chronicles 35,[[2 Chronicles]] 404 | 2 Chronicles 36,[[2 Chronicles]] 405 | Ezra 1,[[Ezra]] 406 | Ezra 2,[[Ezra]] 407 | Ezra 3,[[Ezra]] 408 | Ezra 4,[[Ezra]] 409 | Ezra 5,[[Ezra]] 410 | Ezra 6,[[Ezra]] 411 | Ezra 7,[[Ezra]] 412 | Ezra 8,[[Ezra]] 413 | Ezra 9,[[Ezra]] 414 | Ezra 10,[[Ezra]] 415 | Nehemiah 1,[[Nehemiah]] 416 | Nehemiah 2,[[Nehemiah]] 417 | Nehemiah 3,[[Nehemiah]] 418 | Nehemiah 4,[[Nehemiah]] 419 | Nehemiah 5,[[Nehemiah]] 420 | Nehemiah 6,[[Nehemiah]] 421 | Nehemiah 7,[[Nehemiah]] 422 | Nehemiah 8,[[Nehemiah]] 423 | Nehemiah 9,[[Nehemiah]] 424 | Nehemiah 10,[[Nehemiah]] 425 | Nehemiah 11,[[Nehemiah]] 426 | Nehemiah 12,[[Nehemiah]] 427 | Nehemiah 13,[[Nehemiah]] 428 | Esther 1,[[Esther]] 429 | Esther 2,[[Esther]] 430 | Esther 3,[[Esther]] 431 | Esther 4,[[Esther]] 432 | Esther 5,[[Esther]] 433 | Esther 6,[[Esther]] 434 | Esther 7,[[Esther]] 435 | Esther 8,[[Esther]] 436 | Esther 9,[[Esther]] 437 | Esther 10,[[Esther]] 438 | Job 1,[[Job]] 439 | Job 2,[[Job]] 440 | Job 3,[[Job]] 441 | Job 4,[[Job]] 442 | Job 5,[[Job]] 443 | Job 6,[[Job]] 444 | Job 7,[[Job]] 445 | Job 8,[[Job]] 446 | Job 9,[[Job]] 447 | Job 10,[[Job]] 448 | Job 11,[[Job]] 449 | Job 12,[[Job]] 450 | Job 13,[[Job]] 451 | Job 14,[[Job]] 452 | Job 15,[[Job]] 453 | Job 16,[[Job]] 454 | Job 17,[[Job]] 455 | Job 18,[[Job]] 456 | Job 19,[[Job]] 457 | Job 20,[[Job]] 458 | Job 21,[[Job]] 459 | Job 22,[[Job]] 460 | Job 23,[[Job]] 461 | Job 24,[[Job]] 462 | Job 25,[[Job]] 463 | Job 26,[[Job]] 464 | Job 27,[[Job]] 465 | Job 28,[[Job]] 466 | Job 29,[[Job]] 467 | Job 30,[[Job]] 468 | Job 31,[[Job]] 469 | Job 32,[[Job]] 470 | Job 33,[[Job]] 471 | Job 34,[[Job]] 472 | Job 35,[[Job]] 473 | Job 36,[[Job]] 474 | Job 37,[[Job]] 475 | Job 38,[[Job]] 476 | Job 39,[[Job]] 477 | Job 40,[[Job]] 478 | Job 41,[[Job]] 479 | Job 42,[[Job]] 480 | Psalm 1,[[Psalm]] 481 | Psalm 2,[[Psalm]] 482 | Psalm 3,[[Psalm]] 483 | Psalm 4,[[Psalm]] 484 | Psalm 5,[[Psalm]] 485 | Psalm 6,[[Psalm]] 486 | Psalm 7,[[Psalm]] 487 | Psalm 8,[[Psalm]] 488 | Psalm 9,[[Psalm]] 489 | Psalm 10,[[Psalm]] 490 | Psalm 11,[[Psalm]] 491 | Psalm 12,[[Psalm]] 492 | Psalm 13,[[Psalm]] 493 | Psalm 14,[[Psalm]] 494 | Psalm 15,[[Psalm]] 495 | Psalm 16,[[Psalm]] 496 | Psalm 17,[[Psalm]] 497 | Psalm 18,[[Psalm]] 498 | Psalm 19,[[Psalm]] 499 | Psalm 20,[[Psalm]] 500 | Psalm 21,[[Psalm]] 501 | Psalm 22,[[Psalm]] 502 | Psalm 23,[[Psalm]] 503 | Psalm 24,[[Psalm]] 504 | Psalm 25,[[Psalm]] 505 | Psalm 26,[[Psalm]] 506 | Psalm 27,[[Psalm]] 507 | Psalm 28,[[Psalm]] 508 | Psalm 29,[[Psalm]] 509 | Psalm 30,[[Psalm]] 510 | Psalm 31,[[Psalm]] 511 | Psalm 32,[[Psalm]] 512 | Psalm 33,[[Psalm]] 513 | Psalm 34,[[Psalm]] 514 | Psalm 35,[[Psalm]] 515 | Psalm 36,[[Psalm]] 516 | Psalm 37,[[Psalm]] 517 | Psalm 38,[[Psalm]] 518 | Psalm 39,[[Psalm]] 519 | Psalm 40,[[Psalm]] 520 | Psalm 41,[[Psalm]] 521 | Psalm 42,[[Psalm]] 522 | Psalm 43,[[Psalm]] 523 | Psalm 44,[[Psalm]] 524 | Psalm 45,[[Psalm]] 525 | Psalm 46,[[Psalm]] 526 | Psalm 47,[[Psalm]] 527 | Psalm 48,[[Psalm]] 528 | Psalm 49,[[Psalm]] 529 | Psalm 50,[[Psalm]] 530 | Psalm 51,[[Psalm]] 531 | Psalm 52,[[Psalm]] 532 | Psalm 53,[[Psalm]] 533 | Psalm 54,[[Psalm]] 534 | Psalm 55,[[Psalm]] 535 | Psalm 56,[[Psalm]] 536 | Psalm 57,[[Psalm]] 537 | Psalm 58,[[Psalm]] 538 | Psalm 59,[[Psalm]] 539 | Psalm 60,[[Psalm]] 540 | Psalm 61,[[Psalm]] 541 | Psalm 62,[[Psalm]] 542 | Psalm 63,[[Psalm]] 543 | Psalm 64,[[Psalm]] 544 | Psalm 65,[[Psalm]] 545 | Psalm 66,[[Psalm]] 546 | Psalm 67,[[Psalm]] 547 | Psalm 68,[[Psalm]] 548 | Psalm 69,[[Psalm]] 549 | Psalm 70,[[Psalm]] 550 | Psalm 71,[[Psalm]] 551 | Psalm 72,[[Psalm]] 552 | Psalm 73,[[Psalm]] 553 | Psalm 74,[[Psalm]] 554 | Psalm 75,[[Psalm]] 555 | Psalm 76,[[Psalm]] 556 | Psalm 77,[[Psalm]] 557 | Psalm 78,[[Psalm]] 558 | Psalm 79,[[Psalm]] 559 | Psalm 80,[[Psalm]] 560 | Psalm 81,[[Psalm]] 561 | Psalm 82,[[Psalm]] 562 | Psalm 83,[[Psalm]] 563 | Psalm 84,[[Psalm]] 564 | Psalm 85,[[Psalm]] 565 | Psalm 86,[[Psalm]] 566 | Psalm 87,[[Psalm]] 567 | Psalm 88,[[Psalm]] 568 | Psalm 89,[[Psalm]] 569 | Psalm 90,[[Psalm]] 570 | Psalm 91,[[Psalm]] 571 | Psalm 92,[[Psalm]] 572 | Psalm 93,[[Psalm]] 573 | Psalm 94,[[Psalm]] 574 | Psalm 95,[[Psalm]] 575 | Psalm 96,[[Psalm]] 576 | Psalm 97,[[Psalm]] 577 | Psalm 98,[[Psalm]] 578 | Psalm 99,[[Psalm]] 579 | Psalm 100,[[Psalm]] 580 | Psalm 101,[[Psalm]] 581 | Psalm 102,[[Psalm]] 582 | Psalm 103,[[Psalm]] 583 | Psalm 104,[[Psalm]] 584 | Psalm 105,[[Psalm]] 585 | Psalm 106,[[Psalm]] 586 | Psalm 107,[[Psalm]] 587 | Psalm 108,[[Psalm]] 588 | Psalm 109,[[Psalm]] 589 | Psalm 110,[[Psalm]] 590 | Psalm 111,[[Psalm]] 591 | Psalm 112,[[Psalm]] 592 | Psalm 113,[[Psalm]] 593 | Psalm 114,[[Psalm]] 594 | Psalm 115,[[Psalm]] 595 | Psalm 116,[[Psalm]] 596 | Psalm 117,[[Psalm]] 597 | Psalm 118,[[Psalm]] 598 | Psalm 119,[[Psalm]] 599 | Psalm 120,[[Psalm]] 600 | Psalm 121,[[Psalm]] 601 | Psalm 122,[[Psalm]] 602 | Psalm 123,[[Psalm]] 603 | Psalm 124,[[Psalm]] 604 | Psalm 125,[[Psalm]] 605 | Psalm 126,[[Psalm]] 606 | Psalm 127,[[Psalm]] 607 | Psalm 128,[[Psalm]] 608 | Psalm 129,[[Psalm]] 609 | Psalm 130,[[Psalm]] 610 | Psalm 131,[[Psalm]] 611 | Psalm 132,[[Psalm]] 612 | Psalm 133,[[Psalm]] 613 | Psalm 134,[[Psalm]] 614 | Psalm 135,[[Psalm]] 615 | Psalm 136,[[Psalm]] 616 | Psalm 137,[[Psalm]] 617 | Psalm 138,[[Psalm]] 618 | Psalm 139,[[Psalm]] 619 | Psalm 140,[[Psalm]] 620 | Psalm 141,[[Psalm]] 621 | Psalm 142,[[Psalm]] 622 | Psalm 143,[[Psalm]] 623 | Psalm 144,[[Psalm]] 624 | Psalm 145,[[Psalm]] 625 | Psalm 146,[[Psalm]] 626 | Psalm 147,[[Psalm]] 627 | Psalm 148,[[Psalm]] 628 | Psalm 149,[[Psalm]] 629 | Psalm 150,[[Psalm]] 630 | Proverbs 1,[[Proverbs]] 631 | Proverbs 2,[[Proverbs]] 632 | Proverbs 3,[[Proverbs]] 633 | Proverbs 4,[[Proverbs]] 634 | Proverbs 5,[[Proverbs]] 635 | Proverbs 6,[[Proverbs]] 636 | Proverbs 7,[[Proverbs]] 637 | Proverbs 8,[[Proverbs]] 638 | Proverbs 9,[[Proverbs]] 639 | Proverbs 10,[[Proverbs]] 640 | Proverbs 11,[[Proverbs]] 641 | Proverbs 12,[[Proverbs]] 642 | Proverbs 13,[[Proverbs]] 643 | Proverbs 14,[[Proverbs]] 644 | Proverbs 15,[[Proverbs]] 645 | Proverbs 16,[[Proverbs]] 646 | Proverbs 17,[[Proverbs]] 647 | Proverbs 18,[[Proverbs]] 648 | Proverbs 19,[[Proverbs]] 649 | Proverbs 20,[[Proverbs]] 650 | Proverbs 21,[[Proverbs]] 651 | Proverbs 22,[[Proverbs]] 652 | Proverbs 23,[[Proverbs]] 653 | Proverbs 24,[[Proverbs]] 654 | Proverbs 25,[[Proverbs]] 655 | Proverbs 26,[[Proverbs]] 656 | Proverbs 27,[[Proverbs]] 657 | Proverbs 28,[[Proverbs]] 658 | Proverbs 29,[[Proverbs]] 659 | Proverbs 30,[[Proverbs]] 660 | Proverbs 31,[[Proverbs]] 661 | Ecclesiastes 1,[[Ecclesiastes]] 662 | Ecclesiastes 2,[[Ecclesiastes]] 663 | Ecclesiastes 3,[[Ecclesiastes]] 664 | Ecclesiastes 4,[[Ecclesiastes]] 665 | Ecclesiastes 5,[[Ecclesiastes]] 666 | Ecclesiastes 6,[[Ecclesiastes]] 667 | Ecclesiastes 7,[[Ecclesiastes]] 668 | Ecclesiastes 8,[[Ecclesiastes]] 669 | Ecclesiastes 9,[[Ecclesiastes]] 670 | Ecclesiastes 10,[[Ecclesiastes]] 671 | Ecclesiastes 11,[[Ecclesiastes]] 672 | Ecclesiastes 12,[[Ecclesiastes]] 673 | Song of Solomon 1,[[Song of Solomon]] 674 | Song of Solomon 2,[[Song of Solomon]] 675 | Song of Solomon 3,[[Song of Solomon]] 676 | Song of Solomon 4,[[Song of Solomon]] 677 | Song of Solomon 5,[[Song of Solomon]] 678 | Song of Solomon 6,[[Song of Solomon]] 679 | Song of Solomon 7,[[Song of Solomon]] 680 | Song of Solomon 8,[[Song of Solomon]] 681 | Isaiah 1,[[Isaiah]] 682 | Isaiah 2,[[Isaiah]] 683 | Isaiah 3,[[Isaiah]] 684 | Isaiah 4,[[Isaiah]] 685 | Isaiah 5,[[Isaiah]] 686 | Isaiah 6,[[Isaiah]] 687 | Isaiah 7,[[Isaiah]] 688 | Isaiah 8,[[Isaiah]] 689 | Isaiah 9,[[Isaiah]] 690 | Isaiah 10,[[Isaiah]] 691 | Isaiah 11,[[Isaiah]] 692 | Isaiah 12,[[Isaiah]] 693 | Isaiah 13,[[Isaiah]] 694 | Isaiah 14,[[Isaiah]] 695 | Isaiah 15,[[Isaiah]] 696 | Isaiah 16,[[Isaiah]] 697 | Isaiah 17,[[Isaiah]] 698 | Isaiah 18,[[Isaiah]] 699 | Isaiah 19,[[Isaiah]] 700 | Isaiah 20,[[Isaiah]] 701 | Isaiah 21,[[Isaiah]] 702 | Isaiah 22,[[Isaiah]] 703 | Isaiah 23,[[Isaiah]] 704 | Isaiah 24,[[Isaiah]] 705 | Isaiah 25,[[Isaiah]] 706 | Isaiah 26,[[Isaiah]] 707 | Isaiah 27,[[Isaiah]] 708 | Isaiah 28,[[Isaiah]] 709 | Isaiah 29,[[Isaiah]] 710 | Isaiah 30,[[Isaiah]] 711 | Isaiah 31,[[Isaiah]] 712 | Isaiah 32,[[Isaiah]] 713 | Isaiah 33,[[Isaiah]] 714 | Isaiah 34,[[Isaiah]] 715 | Isaiah 35,[[Isaiah]] 716 | Isaiah 36,[[Isaiah]] 717 | Isaiah 37,[[Isaiah]] 718 | Isaiah 38,[[Isaiah]] 719 | Isaiah 39,[[Isaiah]] 720 | Isaiah 40,[[Isaiah]] 721 | Isaiah 41,[[Isaiah]] 722 | Isaiah 42,[[Isaiah]] 723 | Isaiah 43,[[Isaiah]] 724 | Isaiah 44,[[Isaiah]] 725 | Isaiah 45,[[Isaiah]] 726 | Isaiah 46,[[Isaiah]] 727 | Isaiah 47,[[Isaiah]] 728 | Isaiah 48,[[Isaiah]] 729 | Isaiah 49,[[Isaiah]] 730 | Isaiah 50,[[Isaiah]] 731 | Isaiah 51,[[Isaiah]] 732 | Isaiah 52,[[Isaiah]] 733 | Isaiah 53,[[Isaiah]] 734 | Isaiah 54,[[Isaiah]] 735 | Isaiah 55,[[Isaiah]] 736 | Isaiah 56,[[Isaiah]] 737 | Isaiah 57,[[Isaiah]] 738 | Isaiah 58,[[Isaiah]] 739 | Isaiah 59,[[Isaiah]] 740 | Isaiah 60,[[Isaiah]] 741 | Isaiah 61,[[Isaiah]] 742 | Isaiah 62,[[Isaiah]] 743 | Isaiah 63,[[Isaiah]] 744 | Isaiah 64,[[Isaiah]] 745 | Isaiah 65,[[Isaiah]] 746 | Isaiah 66,[[Isaiah]] 747 | Jeremiah 1,[[Jeremiah]] 748 | Jeremiah 2,[[Jeremiah]] 749 | Jeremiah 3,[[Jeremiah]] 750 | Jeremiah 4,[[Jeremiah]] 751 | Jeremiah 5,[[Jeremiah]] 752 | Jeremiah 6,[[Jeremiah]] 753 | Jeremiah 7,[[Jeremiah]] 754 | Jeremiah 8,[[Jeremiah]] 755 | Jeremiah 9,[[Jeremiah]] 756 | Jeremiah 10,[[Jeremiah]] 757 | Jeremiah 11,[[Jeremiah]] 758 | Jeremiah 12,[[Jeremiah]] 759 | Jeremiah 13,[[Jeremiah]] 760 | Jeremiah 14,[[Jeremiah]] 761 | Jeremiah 15,[[Jeremiah]] 762 | Jeremiah 16,[[Jeremiah]] 763 | Jeremiah 17,[[Jeremiah]] 764 | Jeremiah 18,[[Jeremiah]] 765 | Jeremiah 19,[[Jeremiah]] 766 | Jeremiah 20,[[Jeremiah]] 767 | Jeremiah 21,[[Jeremiah]] 768 | Jeremiah 22,[[Jeremiah]] 769 | Jeremiah 23,[[Jeremiah]] 770 | Jeremiah 24,[[Jeremiah]] 771 | Jeremiah 25,[[Jeremiah]] 772 | Jeremiah 26,[[Jeremiah]] 773 | Jeremiah 27,[[Jeremiah]] 774 | Jeremiah 28,[[Jeremiah]] 775 | Jeremiah 29,[[Jeremiah]] 776 | Jeremiah 30,[[Jeremiah]] 777 | Jeremiah 31,[[Jeremiah]] 778 | Jeremiah 32,[[Jeremiah]] 779 | Jeremiah 33,[[Jeremiah]] 780 | Jeremiah 34,[[Jeremiah]] 781 | Jeremiah 35,[[Jeremiah]] 782 | Jeremiah 36,[[Jeremiah]] 783 | Jeremiah 37,[[Jeremiah]] 784 | Jeremiah 38,[[Jeremiah]] 785 | Jeremiah 39,[[Jeremiah]] 786 | Jeremiah 40,[[Jeremiah]] 787 | Jeremiah 41,[[Jeremiah]] 788 | Jeremiah 42,[[Jeremiah]] 789 | Jeremiah 43,[[Jeremiah]] 790 | Jeremiah 44,[[Jeremiah]] 791 | Jeremiah 45,[[Jeremiah]] 792 | Jeremiah 46,[[Jeremiah]] 793 | Jeremiah 47,[[Jeremiah]] 794 | Jeremiah 48,[[Jeremiah]] 795 | Jeremiah 49,[[Jeremiah]] 796 | Jeremiah 50,[[Jeremiah]] 797 | Jeremiah 51,[[Jeremiah]] 798 | Jeremiah 52,[[Jeremiah]] 799 | Lamentations 1,[[Lamentations]] 800 | Lamentations 2,[[Lamentations]] 801 | Lamentations 3,[[Lamentations]] 802 | Lamentations 4,[[Lamentations]] 803 | Lamentations 5,[[Lamentations]] 804 | Ezekiel 1,[[Ezekiel]] 805 | Ezekiel 2,[[Ezekiel]] 806 | Ezekiel 3,[[Ezekiel]] 807 | Ezekiel 4,[[Ezekiel]] 808 | Ezekiel 5,[[Ezekiel]] 809 | Ezekiel 6,[[Ezekiel]] 810 | Ezekiel 7,[[Ezekiel]] 811 | Ezekiel 8,[[Ezekiel]] 812 | Ezekiel 9,[[Ezekiel]] 813 | Ezekiel 10,[[Ezekiel]] 814 | Ezekiel 11,[[Ezekiel]] 815 | Ezekiel 12,[[Ezekiel]] 816 | Ezekiel 13,[[Ezekiel]] 817 | Ezekiel 14,[[Ezekiel]] 818 | Ezekiel 15,[[Ezekiel]] 819 | Ezekiel 16,[[Ezekiel]] 820 | Ezekiel 17,[[Ezekiel]] 821 | Ezekiel 18,[[Ezekiel]] 822 | Ezekiel 19,[[Ezekiel]] 823 | Ezekiel 20,[[Ezekiel]] 824 | Ezekiel 21,[[Ezekiel]] 825 | Ezekiel 22,[[Ezekiel]] 826 | Ezekiel 23,[[Ezekiel]] 827 | Ezekiel 24,[[Ezekiel]] 828 | Ezekiel 25,[[Ezekiel]] 829 | Ezekiel 26,[[Ezekiel]] 830 | Ezekiel 27,[[Ezekiel]] 831 | Ezekiel 28,[[Ezekiel]] 832 | Ezekiel 29,[[Ezekiel]] 833 | Ezekiel 30,[[Ezekiel]] 834 | Ezekiel 31,[[Ezekiel]] 835 | Ezekiel 32,[[Ezekiel]] 836 | Ezekiel 33,[[Ezekiel]] 837 | Ezekiel 34,[[Ezekiel]] 838 | Ezekiel 35,[[Ezekiel]] 839 | Ezekiel 36,[[Ezekiel]] 840 | Ezekiel 37,[[Ezekiel]] 841 | Ezekiel 38,[[Ezekiel]] 842 | Ezekiel 39,[[Ezekiel]] 843 | Ezekiel 40,[[Ezekiel]] 844 | Ezekiel 41,[[Ezekiel]] 845 | Ezekiel 42,[[Ezekiel]] 846 | Ezekiel 43,[[Ezekiel]] 847 | Ezekiel 44,[[Ezekiel]] 848 | Ezekiel 45,[[Ezekiel]] 849 | Ezekiel 46,[[Ezekiel]] 850 | Ezekiel 47,[[Ezekiel]] 851 | Ezekiel 48,[[Ezekiel]] 852 | Daniel 1,[[Daniel]] 853 | Daniel 2,[[Daniel]] 854 | Daniel 3,[[Daniel]] 855 | Daniel 4,[[Daniel]] 856 | Daniel 5,[[Daniel]] 857 | Daniel 6,[[Daniel]] 858 | Daniel 7,[[Daniel]] 859 | Daniel 8,[[Daniel]] 860 | Daniel 9,[[Daniel]] 861 | Daniel 10,[[Daniel]] 862 | Daniel 11,[[Daniel]] 863 | Daniel 12,[[Daniel]] 864 | Hosea 1,[[Hosea]] 865 | Hosea 2,[[Hosea]] 866 | Hosea 3,[[Hosea]] 867 | Hosea 4,[[Hosea]] 868 | Hosea 5,[[Hosea]] 869 | Hosea 6,[[Hosea]] 870 | Hosea 7,[[Hosea]] 871 | Hosea 8,[[Hosea]] 872 | Hosea 9,[[Hosea]] 873 | Hosea 10,[[Hosea]] 874 | Hosea 11,[[Hosea]] 875 | Hosea 12,[[Hosea]] 876 | Hosea 13,[[Hosea]] 877 | Hosea 14,[[Hosea]] 878 | Joel 1,[[Joel]] 879 | Joel 2,[[Joel]] 880 | Joel 3,[[Joel]] 881 | Amos 1,[[Amos]] 882 | Amos 2,[[Amos]] 883 | Amos 3,[[Amos]] 884 | Amos 4,[[Amos]] 885 | Amos 5,[[Amos]] 886 | Amos 6,[[Amos]] 887 | Amos 7,[[Amos]] 888 | Amos 8,[[Amos]] 889 | Amos 9,[[Amos]] 890 | Obadiah 1,[[Obadiah]] 891 | Jonah 1,[[Jonah]] 892 | Jonah 2,[[Jonah]] 893 | Jonah 3,[[Jonah]] 894 | Jonah 4,[[Jonah]] 895 | Micah 1,[[Micah]] 896 | Micah 2,[[Micah]] 897 | Micah 3,[[Micah]] 898 | Micah 4,[[Micah]] 899 | Micah 5,[[Micah]] 900 | Micah 6,[[Micah]] 901 | Micah 7,[[Micah]] 902 | Nahum 1,[[Nahum]] 903 | Nahum 2,[[Nahum]] 904 | Nahum 3,[[Nahum]] 905 | Habakkuk 1,[[Habakkuk]] 906 | Habakkuk 2,[[Habakkuk]] 907 | Habakkuk 3,[[Habakkuk]] 908 | Zephaniah 1,[[Zephaniah]] 909 | Zephaniah 2,[[Zephaniah]] 910 | Zephaniah 3,[[Zephaniah]] 911 | Haggai 1,[[Haggai]] 912 | Haggai 2,[[Haggai]] 913 | Zechariah 1,[[Zechariah]] 914 | Zechariah 2,[[Zechariah]] 915 | Zechariah 3,[[Zechariah]] 916 | Zechariah 4,[[Zechariah]] 917 | Zechariah 5,[[Zechariah]] 918 | Zechariah 6,[[Zechariah]] 919 | Zechariah 7,[[Zechariah]] 920 | Zechariah 8,[[Zechariah]] 921 | Zechariah 9,[[Zechariah]] 922 | Zechariah 10,[[Zechariah]] 923 | Zechariah 11,[[Zechariah]] 924 | Zechariah 12,[[Zechariah]] 925 | Zechariah 13,[[Zechariah]] 926 | Zechariah 14,[[Zechariah]] 927 | Malachi 1,[[Malachi]] 928 | Malachi 2,[[Malachi]] 929 | Malachi 3,[[Malachi]] 930 | Malachi 4,[[Malachi]] 931 | Matthew 1,[[Matthew]] 932 | Matthew 2,[[Matthew]] 933 | Matthew 3,[[Matthew]] 934 | Matthew 4,[[Matthew]] 935 | Matthew 5,[[Matthew]] 936 | Matthew 6,[[Matthew]] 937 | Matthew 7,[[Matthew]] 938 | Matthew 8,[[Matthew]] 939 | Matthew 9,[[Matthew]] 940 | Matthew 10,[[Matthew]] 941 | Matthew 11,[[Matthew]] 942 | Matthew 12,[[Matthew]] 943 | Matthew 13,[[Matthew]] 944 | Matthew 14,[[Matthew]] 945 | Matthew 15,[[Matthew]] 946 | Matthew 16,[[Matthew]] 947 | Matthew 17,[[Matthew]] 948 | Matthew 18,[[Matthew]] 949 | Matthew 19,[[Matthew]] 950 | Matthew 20,[[Matthew]] 951 | Matthew 21,[[Matthew]] 952 | Matthew 22,[[Matthew]] 953 | Matthew 23,[[Matthew]] 954 | Matthew 24,[[Matthew]] 955 | Matthew 25,[[Matthew]] 956 | Matthew 26,[[Matthew]] 957 | Matthew 27,[[Matthew]] 958 | Matthew 28,[[Matthew]] 959 | Mark 1,[[Mark]] 960 | Mark 2,[[Mark]] 961 | Mark 3,[[Mark]] 962 | Mark 4,[[Mark]] 963 | Mark 5,[[Mark]] 964 | Mark 6,[[Mark]] 965 | Mark 7,[[Mark]] 966 | Mark 8,[[Mark]] 967 | Mark 9,[[Mark]] 968 | Mark 10,[[Mark]] 969 | Mark 11,[[Mark]] 970 | Mark 12,[[Mark]] 971 | Mark 13,[[Mark]] 972 | Mark 14,[[Mark]] 973 | Mark 15,[[Mark]] 974 | Mark 16,[[Mark]] 975 | Luke 1,[[Luke]] 976 | Luke 2,[[Luke]] 977 | Luke 3,[[Luke]] 978 | Luke 4,[[Luke]] 979 | Luke 5,[[Luke]] 980 | Luke 6,[[Luke]] 981 | Luke 7,[[Luke]] 982 | Luke 8,[[Luke]] 983 | Luke 9,[[Luke]] 984 | Luke 10,[[Luke]] 985 | Luke 11,[[Luke]] 986 | Luke 12,[[Luke]] 987 | Luke 13,[[Luke]] 988 | Luke 14,[[Luke]] 989 | Luke 15,[[Luke]] 990 | Luke 16,[[Luke]] 991 | Luke 17,[[Luke]] 992 | Luke 18,[[Luke]] 993 | Luke 19,[[Luke]] 994 | Luke 20,[[Luke]] 995 | Luke 21,[[Luke]] 996 | Luke 22,[[Luke]] 997 | Luke 23,[[Luke]] 998 | Luke 24,[[Luke]] 999 | John 1,[[John]] 1000 | John 2,[[John]] 1001 | John 3,[[John]] 1002 | John 4,[[John]] 1003 | John 5,[[John]] 1004 | John 6,[[John]] 1005 | John 7,[[John]] 1006 | John 8,[[John]] 1007 | John 9,[[John]] 1008 | John 10,[[John]] 1009 | John 11,[[John]] 1010 | John 12,[[John]] 1011 | John 13,[[John]] 1012 | John 14,[[John]] 1013 | John 15,[[John]] 1014 | John 16,[[John]] 1015 | John 17,[[John]] 1016 | John 18,[[John]] 1017 | John 19,[[John]] 1018 | John 20,[[John]] 1019 | John 21,[[John]] 1020 | Acts 1,[[Acts]] 1021 | Acts 2,[[Acts]] 1022 | Acts 3,[[Acts]] 1023 | Acts 4,[[Acts]] 1024 | Acts 5,[[Acts]] 1025 | Acts 6,[[Acts]] 1026 | Acts 7,[[Acts]] 1027 | Acts 8,[[Acts]] 1028 | Acts 9,[[Acts]] 1029 | Acts 10,[[Acts]] 1030 | Acts 11,[[Acts]] 1031 | Acts 12,[[Acts]] 1032 | Acts 13,[[Acts]] 1033 | Acts 14,[[Acts]] 1034 | Acts 15,[[Acts]] 1035 | Acts 16,[[Acts]] 1036 | Acts 17,[[Acts]] 1037 | Acts 18,[[Acts]] 1038 | Acts 19,[[Acts]] 1039 | Acts 20,[[Acts]] 1040 | Acts 21,[[Acts]] 1041 | Acts 22,[[Acts]] 1042 | Acts 23,[[Acts]] 1043 | Acts 24,[[Acts]] 1044 | Acts 25,[[Acts]] 1045 | Acts 26,[[Acts]] 1046 | Acts 27,[[Acts]] 1047 | Acts 28,[[Acts]] 1048 | Romans 1,[[Romans]] 1049 | Romans 2,[[Romans]] 1050 | Romans 3,[[Romans]] 1051 | Romans 4,[[Romans]] 1052 | Romans 5,[[Romans]] 1053 | Romans 6,[[Romans]] 1054 | Romans 7,[[Romans]] 1055 | Romans 8,[[Romans]] 1056 | Romans 9,[[Romans]] 1057 | Romans 10,[[Romans]] 1058 | Romans 11,[[Romans]] 1059 | Romans 12,[[Romans]] 1060 | Romans 13,[[Romans]] 1061 | Romans 14,[[Romans]] 1062 | Romans 15,[[Romans]] 1063 | Romans 16,[[Romans]] 1064 | 1 Corinthians 1,[[1 Corinthians]] 1065 | 1 Corinthians 2,[[1 Corinthians]] 1066 | 1 Corinthians 3,[[1 Corinthians]] 1067 | 1 Corinthians 4,[[1 Corinthians]] 1068 | 1 Corinthians 5,[[1 Corinthians]] 1069 | 1 Corinthians 6,[[1 Corinthians]] 1070 | 1 Corinthians 7,[[1 Corinthians]] 1071 | 1 Corinthians 8,[[1 Corinthians]] 1072 | 1 Corinthians 9,[[1 Corinthians]] 1073 | 1 Corinthians 10,[[1 Corinthians]] 1074 | 1 Corinthians 11,[[1 Corinthians]] 1075 | 1 Corinthians 12,[[1 Corinthians]] 1076 | 1 Corinthians 13,[[1 Corinthians]] 1077 | 1 Corinthians 14,[[1 Corinthians]] 1078 | 1 Corinthians 15,[[1 Corinthians]] 1079 | 1 Corinthians 16,[[1 Corinthians]] 1080 | 2 Corinthians 1,[[2 Corinthians]] 1081 | 2 Corinthians 2,[[2 Corinthians]] 1082 | 2 Corinthians 3,[[2 Corinthians]] 1083 | 2 Corinthians 4,[[2 Corinthians]] 1084 | 2 Corinthians 5,[[2 Corinthians]] 1085 | 2 Corinthians 6,[[2 Corinthians]] 1086 | 2 Corinthians 7,[[2 Corinthians]] 1087 | 2 Corinthians 8,[[2 Corinthians]] 1088 | 2 Corinthians 9,[[2 Corinthians]] 1089 | 2 Corinthians 10,[[2 Corinthians]] 1090 | 2 Corinthians 11,[[2 Corinthians]] 1091 | 2 Corinthians 12,[[2 Corinthians]] 1092 | 2 Corinthians 13,[[2 Corinthians]] 1093 | Galatians 1,[[Galatians]] 1094 | Galatians 2,[[Galatians]] 1095 | Galatians 3,[[Galatians]] 1096 | Galatians 4,[[Galatians]] 1097 | Galatians 5,[[Galatians]] 1098 | Galatians 6,[[Galatians]] 1099 | Ephesians 1,[[Ephesians]] 1100 | Ephesians 2,[[Ephesians]] 1101 | Ephesians 3,[[Ephesians]] 1102 | Ephesians 4,[[Ephesians]] 1103 | Ephesians 5,[[Ephesians]] 1104 | Ephesians 6,[[Ephesians]] 1105 | Philippians 1,[[Philippians]] 1106 | Philippians 2,[[Philippians]] 1107 | Philippians 3,[[Philippians]] 1108 | Philippians 4,[[Philippians]] 1109 | Colossians 1,[[Colossians]] 1110 | Colossians 2,[[Colossians]] 1111 | Colossians 3,[[Colossians]] 1112 | Colossians 4,[[Colossians]] 1113 | 1 Thessalonians 1,[[1 Thessalonians]] 1114 | 1 Thessalonians 2,[[1 Thessalonians]] 1115 | 1 Thessalonians 3,[[1 Thessalonians]] 1116 | 1 Thessalonians 4,[[1 Thessalonians]] 1117 | 1 Thessalonians 5,[[1 Thessalonians]] 1118 | 2 Thessalonians 1,[[2 Thessalonians]] 1119 | 2 Thessalonians 2,[[2 Thessalonians]] 1120 | 2 Thessalonians 3,[[2 Thessalonians]] 1121 | 1 Timothy 1,[[1 Timothy]] 1122 | 1 Timothy 2,[[1 Timothy]] 1123 | 1 Timothy 3,[[1 Timothy]] 1124 | 1 Timothy 4,[[1 Timothy]] 1125 | 1 Timothy 5,[[1 Timothy]] 1126 | 1 Timothy 6,[[1 Timothy]] 1127 | 2 Timothy 1,[[2 Timothy]] 1128 | 2 Timothy 2,[[2 Timothy]] 1129 | 2 Timothy 3,[[2 Timothy]] 1130 | 2 Timothy 4,[[2 Timothy]] 1131 | Titus 1,[[Titus]] 1132 | Titus 2,[[Titus]] 1133 | Titus 3,[[Titus]] 1134 | Philemon 1,[[Philemon]] 1135 | Hebrews 1,[[Hebrews]] 1136 | Hebrews 2,[[Hebrews]] 1137 | Hebrews 3,[[Hebrews]] 1138 | Hebrews 4,[[Hebrews]] 1139 | Hebrews 5,[[Hebrews]] 1140 | Hebrews 6,[[Hebrews]] 1141 | Hebrews 7,[[Hebrews]] 1142 | Hebrews 8,[[Hebrews]] 1143 | Hebrews 9,[[Hebrews]] 1144 | Hebrews 10,[[Hebrews]] 1145 | Hebrews 11,[[Hebrews]] 1146 | Hebrews 12,[[Hebrews]] 1147 | Hebrews 13,[[Hebrews]] 1148 | James 1,[[James]] 1149 | James 2,[[James]] 1150 | James 3,[[James]] 1151 | James 4,[[James]] 1152 | James 5,[[James]] 1153 | 1 Peter 1,[[1 Peter]] 1154 | 1 Peter 2,[[1 Peter]] 1155 | 1 Peter 3,[[1 Peter]] 1156 | 1 Peter 4,[[1 Peter]] 1157 | 1 Peter 5,[[1 Peter]] 1158 | 2 Peter 1,[[2 Peter]] 1159 | 2 Peter 2,[[2 Peter]] 1160 | 2 Peter 3,[[2 Peter]] 1161 | 1 John 1,[[1 John]] 1162 | 1 John 2,[[1 John]] 1163 | 1 John 3,[[1 John]] 1164 | 1 John 4,[[1 John]] 1165 | 1 John 5,[[1 John]] 1166 | 2 John 1,[[2 John]] 1167 | 3 John 1,[[3 John]] 1168 | Jude 1,[[Jude]] 1169 | Revelation 1,[[Revelation]] 1170 | Revelation 2,[[Revelation]] 1171 | Revelation 3,[[Revelation]] 1172 | Revelation 4,[[Revelation]] 1173 | Revelation 5,[[Revelation]] 1174 | Revelation 6,[[Revelation]] 1175 | Revelation 7,[[Revelation]] 1176 | Revelation 8,[[Revelation]] 1177 | Revelation 9,[[Revelation]] 1178 | Revelation 10,[[Revelation]] 1179 | Revelation 11,[[Revelation]] 1180 | Revelation 12,[[Revelation]] 1181 | Revelation 13,[[Revelation]] 1182 | Revelation 14,[[Revelation]] 1183 | Revelation 15,[[Revelation]] 1184 | Revelation 16,[[Revelation]] 1185 | Revelation 17,[[Revelation]] 1186 | Revelation 18,[[Revelation]] 1187 | Revelation 19,[[Revelation]] 1188 | Revelation 20,[[Revelation]] 1189 | Revelation 21,[[Revelation]] 1190 | Revelation 22,[[Revelation]] 1191 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import2/Results/CSV_import_Import2-books-chapters-with_book_attr.csv_20200517_001839.md: -------------------------------------------------------------------------------- 1 | csv-date:: [[May 17th, 2020]] 2 | csv-time:: 00:18 3 | csv-filename:: Import2-books-chapters-with_book_attr.csv 4 | csv-type:: 5 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import3/Results 2/CSV_import_Import3-verses2.csv_20200517_001410.md: -------------------------------------------------------------------------------- 1 | csv-date:: [[May 17th, 2020]] 2 | csv-time:: 00:14 3 | csv-filename:: Import3-verses2.csv 4 | csv-type:: 5 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import3/Results 3/CSV_import_Import3-verses3.csv_20200517_002245.md: -------------------------------------------------------------------------------- 1 | csv-date:: [[May 17th, 2020]] 2 | csv-time:: 00:22 3 | csv-filename:: Import3-verses3.csv 4 | csv-type:: 5 | -------------------------------------------------------------------------------- /Resources/KJV challenge/FINAL FINAL/import3/Results/CSV_import_Import3-verses1.csv_20200517_001053.md: -------------------------------------------------------------------------------- 1 | csv-date:: [[May 17th, 2020]] 2 | csv-time:: 00:10 3 | csv-filename:: Import3-verses1.csv 4 | csv-type:: 5 | -------------------------------------------------------------------------------- /Resources/KJV challenge/KJV challenge (full orig messy).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitMurf/csv-to-roam-table-md/ebd16472ce96392e2c8a148ceef27d6bb9055201/Resources/KJV challenge/KJV challenge (full orig messy).zip -------------------------------------------------------------------------------- /Resources/KJV challenge/KJV spm analysis.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitMurf/csv-to-roam-table-md/ebd16472ce96392e2c8a148ceef27d6bb9055201/Resources/KJV challenge/KJV spm analysis.xlsx -------------------------------------------------------------------------------- /Resources/KJV challenge/Roam_KJV_Full_Export_Excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitMurf/csv-to-roam-table-md/ebd16472ce96392e2c8a148ceef27d6bb9055201/Resources/KJV challenge/Roam_KJV_Full_Export_Excel.xlsx -------------------------------------------------------------------------------- /Resources/README.orig.md: -------------------------------------------------------------------------------- 1 | **Edit a file, create a new file, and clone from Bitbucket in under 2 minutes** 2 | 3 | When you're done, you can delete the content in this README and update the file with details for others getting started with your repository. 4 | 5 | *We recommend that you open this README in another tab as you perform the tasks below. You can [watch our video](https://youtu.be/0ocf7u76WSo) for a full demo of all the steps in this tutorial. Open the video in a new tab to avoid leaving Bitbucket.* 6 | 7 | --- 8 | 9 | ## Edit a file 10 | 11 | You’ll start by editing this README file to learn how to edit a file in Bitbucket. 12 | 13 | 1. Click **Source** on the left side. 14 | 2. Click the README.md link from the list of files. 15 | 3. Click the **Edit** button. 16 | 4. Delete the following text: *Delete this line to make a change to the README from Bitbucket.* 17 | 5. After making your change, click **Commit** and then **Commit** again in the dialog. The commit page will open and you’ll see the change you just made. 18 | 6. Go back to the **Source** page. 19 | 20 | --- 21 | 22 | ## Create a file 23 | 24 | Next, you’ll add a new file to this repository. 25 | 26 | 1. Click the **New file** button at the top of the **Source** page. 27 | 2. Give the file a filename of **contributors.txt**. 28 | 3. Enter your name in the empty file space. 29 | 4. Click **Commit** and then **Commit** again in the dialog. 30 | 5. Go back to the **Source** page. 31 | 32 | Before you move on, go ahead and explore the repository. You've already seen the **Source** page, but check out the **Commits**, **Branches**, and **Settings** pages. 33 | 34 | --- 35 | 36 | ## Clone a repository 37 | 38 | Use these steps to clone from SourceTree, our client for using the repository command-line free. Cloning allows you to work on your files locally. If you don't yet have SourceTree, [download and install first](https://www.sourcetreeapp.com/). If you prefer to clone from the command line, see [Clone a repository](https://confluence.atlassian.com/x/4whODQ). 39 | 40 | 1. You’ll see the clone button under the **Source** heading. Click that button. 41 | 2. Now click **Check out in SourceTree**. You may need to create a SourceTree account or log in. 42 | 3. When you see the **Clone New** dialog in SourceTree, update the destination path and name if you’d like to and then click **Clone**. 43 | 4. Open the directory you just created to see your repository’s files. 44 | 45 | Now that you're more familiar with your Bitbucket repository, go ahead and add a new file locally. You can [push your change back to Bitbucket with SourceTree](https://confluence.atlassian.com/x/iqyBMg), or you can [add, commit,](https://confluence.atlassian.com/x/8QhODQ) and [push from the command line](https://confluence.atlassian.com/x/NQ0zDQ). -------------------------------------------------------------------------------- /Resources/locations.csv: -------------------------------------------------------------------------------- 1 | Street,City,State,Zip,Country 2 | 123,Seattle,WA,98020,United States 3 | 456,Portland,OR,,United States 4 | 789,Seattle,WA,98501,United States 5 | 1011,London,,,England 6 | 1213,Dallas,TX,56013,United States 7 | 1456,San Diego,CA,90210,United States 8 | -------------------------------------------------------------------------------- /Resources/people.csv: -------------------------------------------------------------------------------- 1 | Name,Phone,Gender,Job 2 | John Doe,123-456-7890,Male,Self 3 | Jane Doe,987-654-3210,Female,Engineer 4 | Jim Smith,456-789-0123,Male, 5 | Kelly Rippa,123-987-4567,Female,Talkshow 6 | -------------------------------------------------------------------------------- /Resources/people_blocks.csv: -------------------------------------------------------------------------------- 1 | Name,Notes 2 | John Doe,note1 3 | John Doe,note2 4 | Jane Doe,note1 5 | Jim Smith,note1 6 | Jim Smith,note2 7 | Jim Smith,third note 8 | Kelly Rippa,this stuff 9 | -------------------------------------------------------------------------------- /Roam testing TEMP - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitMurf/csv-to-roam-table-md/ebd16472ce96392e2c8a148ceef27d6bb9055201/Roam testing TEMP - Shortcut.lnk -------------------------------------------------------------------------------- /Roam-csv-importer.ps1: -------------------------------------------------------------------------------- 1 | #v0.5 2 | #Version Comments: Adding parent child bullet nesting 3 | #Repository: https://github.com/GitMurf/csv-to-roam-table-md 4 | #Code written by: Murf @shawnpmurphy8 on Twitter 5 | #Design/Concept by: Rob Haisfield @RobertHaisfield on Twitter 6 | #Design/Concept by: EA @ec_anderson on Twitter 7 | 8 | #If $bTesting = $true then add "TESTING_ to the front of any page created 9 | $bTesting = $false 10 | 11 | #Array variables 12 | $arrSummary = @() 13 | $arrTable = @() 14 | $arrLog = @() 15 | 16 | #Page counter 17 | $pgCtr = 0 18 | $attrCtr = 0 19 | 20 | #Set the indent type. In Roam a single space at beginning of a line works just like a TAB. 21 | #Can use either way to bring into Roam, just your preference. Default we will keep simple and just use Spaces " ". 22 | #If you want to use tab, use $indentType = "`t" 23 | $indentType = " " 24 | 25 | #Bullet type. Leave blank if don't need to show a character for bullets which Roam does NOT need to import into table format 26 | #Can use for example "* " or "- " or "" 27 | #NOTE: Whatever bullet type you use (other than if you use non and leave it empty) you should to add a space after it to match Roam export format 28 | #NOTE: As of april 28, 2020 there is a Roam bug that creates issues with adding Attributes:: if not at Root level of page 29 | #To workaround this bug, will leave a space between the double colon "attr: : item" so it doesnt get imported as attribute and you just have to remove the space 30 | #NOTE: Attribute fields canNOT have bullets added in front so just leave without a bullet... not sure if this has to do with Bug above or not 31 | $bulletType = "- " 32 | 33 | #Set the delimiter variable (default is "," comma) 34 | $strDelim = "," 35 | 36 | #Root bullets to nest results below under 37 | $arrSummary += , ($bulletType + "SUMMARY") #Collapse page and attribute names created under this main bullet 38 | $arrTable += , ($bulletType + "TABLE") #Collapse the entire table under a parent bullet for Table 39 | $arrLog += , ($bulletType + "LOGS") #Creating "LOGS" parent bullet to have all logs nested under it 40 | 41 | #This function writes to a specified file with specified text 42 | Function Write-Roam-File 43 | { 44 | Param( 45 | [string]$filePath, 46 | [string]$strToWrite = "" 47 | ) 48 | 49 | Add-content -LiteralPath $filePath -value $strToWrite 50 | $logInfo = $indentType + $indentType + $bulletType + "Added '$strToWrite' to the File '$filePath'" 51 | $logInfo = $logInfo -Replace "\:","_" -Replace "\{","_" -Replace "\}","_" 52 | $script:arrLog += , $logInfo 53 | } 54 | 55 | #This function checks if trailing comma and then removes it 56 | Function Remove-Trailing-Comma 57 | { 58 | Param( 59 | [string]$tmpJason 60 | ) 61 | 62 | if($tmpJason.substring($tmpJason.length-1) -eq ",") 63 | { 64 | $tmpJason = $tmpJason.substring(0,$tmpJason.length - 1) #Remove trailing comma 65 | } 66 | return $tmpJason 67 | } 68 | 69 | #Add a blank line for easier reading of prompts in powershell window 70 | Write-Host 71 | 72 | #Exporting to JSON or Markdown (JSON is default as Markdown has limitations such as max 10 import at once and issues with Windows file name characters, attribute names etc.) 73 | $bJSON = $true 74 | $jsonString = "[" 75 | 76 | #Ask for user input on whether JSON or Markdown export 77 | $respExport = Read-Host "Export to JSON (j) or Markdown (m)? Recommend JSON as Markdown has a 10 page import limit. Enter 'j' or 'm'" 78 | 79 | #Check for JSON or Markdown 80 | if($respExport -eq "m" -or $respExport -eq "'m'" -or $respExport -eq "M" -or $respExport -eq "'M'"){$bJSON = $false}else{$bJSON = $true} 81 | 82 | Write-Host 83 | 84 | #Importing attributes vs blocks 85 | $bAttributes = $false 86 | 87 | #Ask for user input on whether have one CSV row per page and then many columns that will be attributes OR many rows because adding blocks of data to each page. 88 | $respPages = Read-Host "Are you adding attributes (one row per page with many columns) OR blocks of text (many rows per page, one 'Block' column)? (Enter 'a' for attributes, 'b' for blocks)" 89 | 90 | #Check if user is importing attributes or blocks 91 | if($respPages -eq "a" -or $respPages -eq "'a'" -or $respPages -eq "A" -or $respPages -eq "'A'"){$bAttributes = $true}else{$bAttributes = $false} 92 | 93 | Write-Host 94 | 95 | if($bAttributes) 96 | { 97 | #Ask user for the type of csv import (e.g., People, Company, CRM etc.) 98 | $csvType = Read-Host "Enter the Type/Category of your CSV data (e.g., Contacts, Books, Videos, etc.) to allow for searching of similar data types in Roam" 99 | 100 | Write-Host 101 | } 102 | else 103 | { 104 | if($bJSON -eq $false) 105 | { 106 | #Exit the script 107 | Read-Host -Prompt "Press any key to exit. Currently it is not Recommended to Import a CSV with Blocks (vs Attributes) with Markdown output. Restart the script and select the JSON option." 108 | Exit 109 | } 110 | } 111 | 112 | #Ask for user input. If left blank and user presses ENTER, then continue with default (comma). Otherwise they can enter their own option. 113 | $respDelim = Read-Host "Default CSV Delimiter is '$strDelim' (comma). Press ENTER to Continue or input 'n' to change it." 114 | 115 | Write-Host 116 | 117 | #Check if user decided to change to a different delimiter 118 | if($respDelim -eq "n" -or $respDelim -eq "N" -or $respDelim -eq "'n'" -or $respDelim -eq "'N'") 119 | { 120 | $strDelim = Read-Host "What would you like your CSV Delimiter to be? (If Tab delimited, enter 'TAB')" 121 | if($strDelim -eq "TAB" -or $strDelim -eq "tab" -or $strDelim -eq "'TAB'" -or $strDelim -eq "'tab'"){$strDelim = "`t"} 122 | } 123 | 124 | Write-Host 125 | 126 | #Get path where script is running from so you can target CSV 127 | $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition 128 | 129 | #Try to find the CSV to scan automatically by looking in current folder and also selecting one CSV file sorting by most recent edited 130 | $foundCsv = Get-ChildItem -Path $scriptPath -Filter *.csv | Sort-Object -Property LastWriteTime -Descending | Select-Object -first 1 131 | $foundName = $foundCsv.Name 132 | 133 | if($foundCsv) 134 | { 135 | $respFound = Read-Host "Is this your target CSV: '$foundName'? Press ENTER to Continue or input 'n' to select a different CSV" 136 | Write-Host 137 | } 138 | else 139 | { 140 | $respFound = "n" 141 | } 142 | 143 | if($respFound -ne "") 144 | { 145 | #Ask for user input. If left blank and user presses ENTER, then use the script path. Otherwise they can enter their own custom path. 146 | $respPath = Read-Host "Is your target CSV file located here: '$scriptPath'? Press ENTER to Continue or input 'n' to change it." 147 | 148 | Write-Host 149 | 150 | #Check if user decided to change to a different path 151 | if($respPath -eq "n" -or $respPath -eq "N" -or $respPath -eq "'n'" -or $respPath -eq "'N'") 152 | { 153 | $scriptPath = Read-Host "Enter the folder path of your CSV file (do NOT include the file name)" 154 | } 155 | Write-Host 156 | 157 | #Get the file name from user and create the full path 158 | $fileNameStr = Read-Host "Name of CSV file with extension? Do NOT include path. Example: FileName.csv" 159 | $fileNameStrPath = $scriptPath + "\" + $fileNameStr 160 | Write-Host 161 | } 162 | else 163 | { 164 | #The CSV that was auto picked is the correct one (CSV in same folder as script) 165 | #Get the file name and create the full path 166 | $fileNameStr = $foundName 167 | $fileNameStrPath = $foundCsv.FullName 168 | Write-Host 169 | } 170 | 171 | #Set the Results folder to store all the outputs from the script 172 | $resultsFolder = "$scriptPath\Results" 173 | 174 | #Get a date string down to the second we can add to new markdown file we will be creating so no duplicates if we run multiple times 175 | $fullDateStr = get-date 176 | $dateStrName = $fullDateStr.ToString("yyyyMMdd_HHmmss") 177 | $csvFileName = "$fileNameStr" + "_$dateStrName" 178 | 179 | #Import .CSV file into a Variable to loop through and parse 180 | $csvObject = Import-Csv -Delimiter $strDelim -Path "$fileNameStrPath" 181 | 182 | #Create the csv-import page name to store all the info about this import and the pages it creates (summary and log) 183 | $csvImportName = "CSV_import_" + $csvFileName 184 | if($bTesting){$csvImportName = "TESTING_" + $csvImportName} 185 | $csvImportNamePath = "$resultsFolder\" + "$csvImportName" + ".md" 186 | #Create Results folder if it doesn't already exist 187 | if(!(Test-Path $resultsFolder)){New-Item -ItemType Directory -Force -Path $resultsFolder | Out-Null} 188 | 189 | if($bJSON) 190 | { 191 | #Create JSON file 192 | $jsonFilePath = "$resultsFolder\" + "$csvImportName" + ".json" 193 | } 194 | 195 | #Get current date and put into Roam format 196 | $roamMonth = $fullDateStr.ToString("MMMM") #April, August, January 197 | $roamDay1 = $fullDateStr.ToString("%d") #1, 13, 28 198 | $roamYear = $fullDateStr.ToString("yyyy") #2020 199 | 200 | #Find the "day" suffix for Roam format (i.e., Xst, Xnd, Xrd, Xth) 201 | $roamDay2 = switch($roamDay1) 202 | { 203 | {$_ -in 1,21,31} {$roamDay1 + 'st'; break} 204 | {$_ -in 2,22} {$roamDay1 + 'nd'; break} 205 | {$_ -in 3,23} {$roamDay1 + 'rd'; break} 206 | Default {$roamDay1 + 'th'; break} 207 | } 208 | $roamDate = "[[" + "$roamMonth $roamDay2, $roamYear" + "]]" #[[April 26th, 2020]] 209 | #Time string 210 | $strTime = $fullDateStr.ToString("HH:mm") #17:43, 05:21 211 | 212 | $arrLog += , ($indentType + $bulletType + "Created the .MD markdown file '$csvImportName' that will Summarize the CSV Conversion activities and store a Log of all actions.") 213 | $arrLog += , ($indentType + $bulletType + "Converted today's date to Roam format: $roamDate") 214 | 215 | $pgCtr = $pgCtr + 1 216 | 217 | if($bAttributes) 218 | { 219 | #Write attribute for csv-import to first line of this new .md file (need to use LiteralPath parameter because of [[]] characters in path) 220 | Write-Roam-File $csvImportNamePath ("csv-date:: " + $roamDate) 221 | #Import time attribute 222 | Write-Roam-File $csvImportNamePath ("csv-time:: " + $strTime) 223 | #Filename attribute 224 | Write-Roam-File $csvImportNamePath ("csv-filename:: " + $fileNameStr) 225 | #Type of CSV file attribute (example could be: People, CRM, Company) 226 | Write-Roam-File $csvImportNamePath ("csv-type:: " + $csvType) 227 | } 228 | 229 | $arrLog += , ($indentType + $bulletType + "Finished adding primary Attributes to the CSV Conversion Summary page: '$csvImportName'") 230 | 231 | #Creation of the CSV into Roam table format 232 | $arrLog += , ($indentType + $bulletType + "Converting the CSV into the Roam table markdown format.") 233 | 234 | #Add {{table}} 235 | $tableCell = "{{table}}" 236 | $tableCell = $bulletType + $tableCell 237 | $tableCell = $indentType + $tableCell 238 | $arrTable += , $tableCell 239 | 240 | #Start by adding the table header 241 | $arrLog += , ($indentType + $bulletType + "Adding table headers to $csvFileName") 242 | $arrSummary += , ($indentType + $bulletType + "ATTRIBUTES") #Will create links to each attribute created under this bullet 243 | 244 | $ctr = 2 245 | foreach($col in $csvObject[0].psobject.properties.name) 246 | { 247 | $tableCell = $col 248 | $tableCell = $bulletType + $tableCell 249 | #Add the proper indentation based on looping through x number of times based on $ctr 250 | $tmpCtr = $ctr 251 | while($tmpCtr -gt 0) 252 | { 253 | $tableCell = $indentType + $tableCell 254 | $tmpCtr = $tmpCtr - 1 255 | } 256 | 257 | $arrTable += , $tableCell 258 | $ctr = $ctr + 1 259 | 260 | #Need to add attributes to the summary page 261 | if($ctr -gt 3) #Need to skip the first column because that is what you are creating pages from 262 | { 263 | if($bTesting){$col = "TESTING_" + $col} 264 | $arrSummary += , ($indentType + $indentType + $bulletType + "#[[" + $col + "]]") 265 | $attrCtr = $attrCtr + 1 266 | } 267 | } 268 | 269 | if($ctr -gt 4) 270 | { 271 | $checkLastCol = $col 272 | if($bTesting){$checkLastCol = $col.substring(8)} 273 | $bNestedBlocks = $false 274 | if($bAttributes -eq $false -and $checkLastCol -eq "Parent3"){$bNestedBlocks = $true} 275 | 276 | if($bAttributes -eq $false -and $bNestedBlocks -ne $true) 277 | { 278 | #Exit the script 279 | Read-Host -Prompt "Press any key to exit. You selected the 'Block' import as opposed to 'Attributes'. You can only have 2 columns with Block import (Page Name and Block). Please fix and restart the script." 280 | Exit 281 | } 282 | } 283 | 284 | #Create new page/file for each CSV row 285 | $arrLog += , ($indentType + $bulletType + "Creating new Pages for each CSV row") 286 | $arrSummary += , ($indentType + $bulletType + "PAGES CREATED") 287 | 288 | $rowCtr = 1 289 | $lastRowName = "" 290 | 291 | $lastPar1 = "" 292 | $lastPar2 = "" 293 | $lastPar3 = "" 294 | 295 | #Loop through each row of the csv file 296 | foreach($row in $csvObject) 297 | { 298 | write-host "Row: $rowCtr" 299 | #Create new page/file for each CSV row 300 | $colHeaderNames = $row.psobject.properties.name 301 | $rowPageName = $row.($colHeaderNames[0]) 302 | if($bTesting){$rowPageName = "TESTING_" + $rowPageName} 303 | 304 | if($bJSON) 305 | { 306 | if($lastRowName -ne $rowPageName) 307 | { 308 | if($bAttributes -eq $false -and $rowCtr -gt 1) 309 | { 310 | $jsonString = Remove-Trailing-Comma $jsonString #Remove trailing comma 311 | #Close par3 if there previously was one 312 | if($lastPar3 -ne ""){$jsonString = $jsonString + ']}'} 313 | #Close par2 if there previously was one 314 | if($lastPar2 -ne ""){$jsonString = $jsonString + ']}'} 315 | #Close par1 if there previously was one 316 | if($lastPar1 -ne ""){$jsonString = $jsonString + ']}'} 317 | #Close title for previous page 318 | $jsonString = $jsonString + ']},' 319 | } 320 | $tmpStringAdd = $rowPageName -Replace '"','\"' 321 | $jsonString = $jsonString + '{"title":"' + $tmpStringAdd + '","children":[' 322 | } 323 | } 324 | 325 | #Dont add to the array if importing "blocks" as for big files like the Bible (31k blocks) it slows the script way down as the array grows 326 | if($bAttributes){$arrSummary += , ($indentType + $indentType + $bulletType + "[[" + $rowPageName + "]]")} 327 | $rowPageNamePath = "$resultsFolder\" + "$rowPageName" + ".md" 328 | $pgCtr = $pgCtr + 1 329 | 330 | #Commenting out the CSV import attribute data becuase isn't needed on each page... instead link to the csv summary page which has all that info 331 | #Check if any of the Windows filename illegal characters are present and if so, do NOT write to the file and instead just store the attributes on the summary page 332 | #Then the user can go into Summary page in Roam and copy the attributes, click the page name and then add there so that can keep the special character in name 333 | #The characters not allowed are: \ / : * ? " < > | 334 | $bInvalidChar = $false 335 | if($bJSON -eq $false) 336 | { 337 | if($bAttributes) 338 | { 339 | if($rowPageName.Contains("\") -or $rowPageName.Contains("/") -or $rowPageName.Contains(":") -or $rowPageName.Contains("*") -or $rowPageName.Contains("?") -or $rowPageName.Contains('"') -or $rowPageName.Contains("<") -or $rowPageName.Contains(">") -or $rowPageName.Contains("|")) 340 | { 341 | $bInvalidChar = $true 342 | $arrLog += , ($indentType + $bulletType + "**Invalid character** for Windows found in Filename for PAGE: [[" + $rowPageName + "]]") 343 | } 344 | else{$arrLog += , ($indentType + $bulletType + "Created the Page: [[" + $rowPageName + "]]")} 345 | } 346 | } 347 | 348 | if($bInvalidChar) 349 | { 350 | #Add under each page name in summary as this is what we will do if a bad character for Windows in file name 351 | #NOTE: As of april 28, 2020 there is a Roam bug that creates issues with adding Attributes:: if not at Root level of page 352 | #To workaround this bug, will leave a space between the double colon so it doesnt get imported as attribute and you just have to remove the space 353 | #Dont add to the array if importing "blocks" as for big files like the Bible (31k blocks) it slows the script way down as the array grows 354 | if($bAttributes){$arrSummary += , ($indentType + $indentType + $indentType + "csv-import: : [[" + $csvImportName + "]]")} 355 | #General attributes for the CSV import. These are in the Summary page for the import so do we need them also on every page? 356 | #$arrSummary += , ($indentType + $indentType + $indentType + $bulletType + "csv-date:: " + $roamDate) 357 | #$arrSummary += , ($indentType + $indentType + $indentType + $bulletType + "csv-time:: " + $strTime) 358 | #$arrSummary += , ($indentType + $indentType + $indentType + $bulletType + "csv-filename:: " + $fileNameStr) 359 | #$arrSummary += , ($indentType + $indentType + $indentType + $bulletType + "csv-type:: " + $csvType) 360 | } 361 | else 362 | { 363 | if($bJSON -ne $true){Write-Roam-File $rowPageNamePath ("csv-import:: [[" + $csvImportName + "]]")} 364 | #General attributes for the CSV import. These are in the Summary page for the import so do we need them also on every page? 365 | #Write-Roam-File $rowPageNamePath ("csv-date:: " + $roamDate) 366 | #Write-Roam-File $rowPageNamePath ("csv-time:: " + $strTime) 367 | #Write-Roam-File $rowPageNamePath ("csv-filename:: " + $fileNameStr) 368 | #Write-Roam-File $rowPageNamePath ("csv-type:: " + $csvType) 369 | } 370 | 371 | #Set a counter which will decide how spacing is done for indents in the Roam table structure 372 | #Start at 2 instead of 0 to account for CSV file name parent bullet and then {{table}} being second indent level, and everything needing to start indented under it 373 | $ctr = 2 374 | #For each row of csv file, loop through each column 375 | $listOfColumns = $row.psobject.properties.name 376 | foreach($col in $listOfColumns) 377 | { 378 | $tableCellOrig = $row.$col 379 | if($bAttributes) 380 | { 381 | $tableCell = $tableCellOrig 382 | $tableCell = $bulletType + $tableCell 383 | #Add the proper indentation based on looping through x number of times based on $ctr 384 | $tmpCtr = $ctr 385 | while($tmpCtr -gt 0) 386 | { 387 | $tableCell = $indentType + $tableCell 388 | $tmpCtr = $tmpCtr - 1 389 | } 390 | 391 | $arrTable += , $tableCell 392 | } 393 | 394 | $ctr = $ctr + 1 395 | if($ctr -gt 3) #Need to skip the first column because that is what you are creating pages from 396 | { 397 | #Add attribute for the new page (row) 398 | if($bTesting){$col = "TESTING_" + $col} 399 | if($bInvalidChar) 400 | { 401 | #Add under each page name in summary as this is what we will do if a bad character for Windows in file name 402 | #NOTE: As of april 28, 2020 there is a Roam bug that creates issues with adding Attributes:: if not at Root level of page 403 | #To workaround this bug, will leave a space between the double colon so it doesnt get imported as attribute and you just have to remove the space 404 | if($bAttributes){$arrSummary += , ($indentType + $indentType + $indentType + $col + ": : " + $tableCellOrig)} 405 | } 406 | else 407 | { 408 | if($bJSON -ne $true) 409 | { 410 | Write-Roam-File $rowPageNamePath ($col + ":: " + $tableCellOrig) 411 | } 412 | else 413 | { 414 | if($bAttributes -eq $false) 415 | { 416 | #For block import only need to look at the one column next to the page name column 417 | if($ctr -eq 4) 418 | { 419 | if($bNestedBlocks) 420 | { 421 | $par1 = $row.($listOfColumns[$ctr-2]) 422 | $par2 = $row.($listOfColumns[$ctr-2+1]) 423 | $par3 = $row.($listOfColumns[$ctr-2+2]) 424 | 425 | if($lastRowName -ne $rowPageName) #New set of rows / page name section in CSV 426 | { 427 | if($par1 -ne "") 428 | { 429 | $tmpStringAdd = $par1 -Replace '"','\"' 430 | $jsonString = $jsonString + '{"string":"' + $tmpStringAdd + '","children":[' 431 | if($par2 -ne "") 432 | { 433 | $tmpStringAdd = $par2 -Replace '"','\"' 434 | $jsonString = $jsonString + '{"string":"' + $tmpStringAdd + '","children":[' 435 | if($par3 -ne "") 436 | { 437 | $tmpStringAdd = $par3 -Replace '"','\"' 438 | $jsonString = $jsonString + '{"string":"' + $tmpStringAdd + '","children":[' 439 | } 440 | } 441 | } 442 | 443 | $lastPar1 = $par1 444 | $lastPar2 = $par2 445 | $lastPar3 = $par3 446 | } 447 | 448 | #par1 changed which means changing all 3 parents 449 | if($par1 -ne $lastPar1) 450 | { 451 | $jsonString = Remove-Trailing-Comma $jsonString #Remove trailing comma 452 | #Close par3 if there previously was one 453 | if($lastPar3 -ne ""){$jsonString = $jsonString + ']}'} 454 | #Close par2 if there previously was one 455 | if($lastPar2 -ne ""){$jsonString = $jsonString + ']}'} 456 | #Close par1 if there previously was one 457 | if($lastPar1 -ne ""){$jsonString = $jsonString + ']}'} 458 | 459 | #If not blank then add new par1 460 | if($par1 -ne "") 461 | { 462 | $tmpStringAdd = $par1 -Replace '"','\"' 463 | $jsonString = $jsonString + ',{"string":"' + $tmpStringAdd + '","children":[' 464 | #If not blank then add new par2 465 | if($par2 -ne "") 466 | { 467 | $tmpStringAdd = $par2 -Replace '"','\"' 468 | $jsonString = $jsonString + '{"string":"' + $tmpStringAdd + '","children":[' 469 | #If not blank then add new par3 470 | if($par3 -ne "") 471 | { 472 | $tmpStringAdd = $par3 -Replace '"','\"' 473 | $jsonString = $jsonString + '{"string":"' + $tmpStringAdd + '","children":[' 474 | } 475 | else{ 476 | #$jsonString = $jsonString + ',' 477 | } #Have to add the trailing comma again 478 | } 479 | else{ 480 | #$jsonString = $jsonString + ',' 481 | } #Have to add the trailing comma again 482 | } 483 | else{ 484 | $jsonString = $jsonString + ',' 485 | } #Have to add the trailing comma again 486 | } 487 | elseif($par2 -ne $lastPar2) #If par2 changed then change par2 and par3 488 | { 489 | $jsonString = Remove-Trailing-Comma $jsonString #Remove trailing comma 490 | #Close par3 if there previously was one 491 | if($lastPar3 -ne ""){$jsonString = $jsonString + ']}'} 492 | #Close par2 if there previously was one 493 | if($lastPar2 -ne ""){$jsonString = $jsonString + ']}'} 494 | 495 | #If not blank then add new par2 496 | if($par2 -ne "") 497 | { 498 | $tmpStringAdd = $par2 -Replace '"','\"' 499 | $jsonString = $jsonString + ',{"string":"' + $tmpStringAdd + '","children":[' 500 | #If not blank then add new par3 501 | if($par3 -ne "") 502 | { 503 | $tmpStringAdd = $par3 -Replace '"','\"' 504 | $jsonString = $jsonString + '{"string":"' + $tmpStringAdd + '","children":[' 505 | } 506 | else{ 507 | #$jsonString = $jsonString + ',' 508 | } #Have to add the trailing comma again 509 | } 510 | else{$jsonString = $jsonString + ','} #Have to add the trailing comma again 511 | } 512 | elseif($par3 -ne $lastPar3) #If only par3 changed 513 | { 514 | $jsonString = Remove-Trailing-Comma $jsonString #Remove trailing comma 515 | #Close par3 if there previously was one 516 | if($lastPar3 -ne ""){$jsonString = $jsonString + ']}'} 517 | 518 | #If not blank then add new par3 519 | if($par3 -ne "") 520 | { 521 | $tmpStringAdd = $par3 -Replace '"','\"' 522 | $jsonString = $jsonString + ',{"string":"' + $tmpStringAdd + '","children":[' 523 | } 524 | else{$jsonString = $jsonString + ','} #Have to add the trailing comma again 525 | } 526 | 527 | $lastPar1 = $par1 528 | $lastPar2 = $par2 529 | $lastPar3 = $par3 530 | } 531 | $tmpStringAdd = $tableCellOrig -Replace '"','\"' 532 | $jsonString = $jsonString + '{"string":"' + $tmpStringAdd + '"},' 533 | } 534 | } 535 | else 536 | { 537 | $jsonString = $jsonString + '{"string":"' + $col + ':: ' + $tableCellOrig + '"},' 538 | } 539 | } 540 | } 541 | } 542 | } 543 | #Account for the extra "," added in last children item 544 | if($bJSON) 545 | { 546 | if($bAttributes) 547 | { 548 | $jsonString = Remove-Trailing-Comma $jsonString #Remove trailing comma 549 | $jsonString = $jsonString + ']},' 550 | } 551 | } 552 | $lastRowName = $rowPageName 553 | $rowCtr = $rowCtr + 1 554 | } 555 | 556 | #Close out the final children and title ]} 557 | if($bJSON) 558 | { 559 | #If importing block style CSV file then there is an extra set of [] that needs to be closed before the final ] closure 560 | if($bAttributes -eq $false) 561 | { 562 | $jsonString = Remove-Trailing-Comma $jsonString #Remove trailing comma 563 | #Close par3 if there previously was one 564 | if($lastPar3 -ne ""){$jsonString = $jsonString + ']}'} 565 | #Close par2 if there previously was one 566 | if($lastPar2 -ne ""){$jsonString = $jsonString + ']}'} 567 | #Close par1 if there previously was one 568 | if($lastPar1 -ne ""){$jsonString = $jsonString + ']}'} 569 | #Close title for previous page 570 | $jsonString = $jsonString + ']},' 571 | } 572 | $jsonString = Remove-Trailing-Comma $jsonString #Remove trailing comma 573 | $jsonString = $jsonString + ']' 574 | Write-Roam-File $jsonFilePath $jsonString 575 | } 576 | else 577 | { 578 | Write-Roam-File $csvImportNamePath ($bulletType + "CSV Conversion Script created **$pgCtr Pages** and **$attrCtr Attributes**") 579 | $arrLog += , ($indentType + $bulletType + "Merge the Summary into $csvImportName") 580 | 581 | #Add Summary array to CSV-Import summary markdown file 582 | Foreach($summRow in $arrSummary) 583 | { 584 | Write-Roam-File $csvImportNamePath $summRow 585 | } 586 | 587 | $arrLog += , ($indentType + $bulletType + "Merge the Roam table markdown format into $csvImportName") 588 | 589 | #Add the Roam table markdown format code from array to CSV-Import summary markdown file 590 | Foreach($tableRow in $arrTable) 591 | { 592 | Write-Roam-File $csvImportNamePath $tableRow 593 | } 594 | 595 | $arrLog += , ($indentType + $bulletType + "Merge the Logs from this CSV conversion/import into $csvImportName") 596 | 597 | #Add the log array values to CSV-Import summary markdown file 598 | Foreach($logRow in $arrLog) 599 | { 600 | Write-Roam-File $csvImportNamePath $logRow 601 | } 602 | } 603 | 604 | #Exit the script 605 | Read-Host -Prompt "Script complete. Press any key to exit." 606 | Exit 607 | --------------------------------------------------------------------------------